ENVI
🐛 BugEzy

🚀 Install BugEzy — done in 3 minutes

From zero to ready in five steps — let AI fix your bugs right away.

🤖 Fastest way: copy & paste to AI

Not technical? Copy the text below to your AI (Claude Desktop / Claude Code / Cursor / Windsurf / VS Code + Cline / Google Antigravity / Gemini CLI) and it will handle it.

Please help me install the BugEzy MCP debugging tool so you can read my bug reports and fix bugs for me.

Steps:
1. Chrome extension: https://chromewebstore.google.com/detail/bugezy/hfnkjlbbpehkflgfbjenfmnmjkdjadcj
2. MCP connection — add this to your MCP config:
{
  "mcpServers": {
    "bugezy": {
      "url": "https://bugezy.dev/mcp"
    }
  }
}

Once installed, whenever I record a bug with BugEzy, you can read my report via MCP (console errors, network issues, voice description, screenshots) and fix it directly.

Full guide: https://bugezy.dev/install

Or install manually in five steps below ↓

1Install the extension

  1. Open the BugEzy page on the Chrome Web Store
  2. Click "Add to Chrome" → confirm "Add extension" in the popup
Go to Chrome Web Store →
Works on Chrome and all Chromium-based browsers (Edge, Brave, Arc, etc.).

2Pin to the toolbar

  1. Click the puzzle icon 🧩 at the top right (extensions menu)
  2. Find BugEzy 🐛 → click the pin 📌 next to it
Once pinned, the icon stays on the toolbar for one-click recording anytime.

3Sign in

  1. Click the BugEzy icon 🐛 on the toolbar
  2. Click "Sign in with Google" → choose your account to authorize
  3. Your name shown in the popup = signed in

4Your first recording

  1. Open any webpage → click the BugEzy icon → click "Record"
  2. Reproduce the issue while describing the bug by voice
  3. Click "Stop" → the report editor opens automatically
🎉 Congrats — your first bug report is done! Edit text, let AI clean it up, then upload.

5Connect AI (MCP setup)

Let AI read your bug reports directly — no copy-paste.

Works with all MCP tools: Claude Desktop · Claude Code · Cursor · Windsurf · VS Code + Cline · Google Antigravity · Gemini CLI.

🔌 BugEzy MCP URL (same for all tools)
https://bugezy.dev/mcp

After signing in to BugEzy, this page auto-appends ?token= to the URL and configs (so your AI never needs to pass a token manually).

Do not open this URL in a browser — it is a protocol endpoint for AI tools. Opening it in a browser just shows an error, which is normal. Set it up in your AI tool per the steps below.
Claude.ai
Settings → Connectors → Add → paste the URL → Connect
Claude Desktop / Cursor / Windsurf
Edit the config file (claude_desktop_config.json / mcp.json), add:
{
  "mcpServers": {
    "bugezy": {
      "url": "https://bugezy.dev/mcp"
    }
  }
}
VS Code + Cline
Cline → MCP Servers → Add → paste the URL
Claude Code (terminal)
claude mcp add --transport http bugezy https://bugezy.dev/mcp
Google Antigravity / Gemini CLI
Add to your MCP config (same protocol / format as above):
{
  "mcpServers": {
    "bugezy": {
      "url": "https://bugezy.dev/mcp"
    }
  }
}
Once connected, just ask:"Read my latest BugEzy report and tell me how to fix it"
13 MCP tools (AI queries on demand to save tokens):
list_reports recent reports
get_report_overview report summary
get_timeline full timeline
get_console_logs console errors
get_network_errors network errors
get_voice_transcript voice transcript
get_screenshots screenshots
get_page_info page info
get_rrweb_summary DOM trace summary
get_rrweb_events DOM event details
get_live_errors live monitor errors
get_terminal_logs CLI terminal logs
get_usage_stats token usage stats

🐍 Backend developer? Try the Terminal CLI

Capture terminal errors (stderr / traceback / crash) from Python / Node.js / Go — AI reads and analyzes them directly, no browser needed. Premium feature.

$ BUGEZY_TOKEN=<your token> npx bugezy-watch -- python manage.py runserver
$ BUGEZY_TOKEN=<your token> npx bugezy-watch -- node server.js
$ BUGEZY_TOKEN=<your token> npx bugezy-watch -- go run main.go

AI then reads these errors via the get_terminal_logs MCP tool.

See all features →