Setup

Connect in three steps

  1. 1. Get a key

    Open /signup. Email, then a 6-digit code. The key is shown once in the browser.

  2. 2. Paste a config

    Endpoint https://www.bigbug.ai/mcp. Replace bbe_<YOUR_KEY>.

  3. 3. Confirm the connection

    You want applied: true in the response text.

Claude Code

User-scope MCP. Run in a terminal.

claude mcp add --transport http -s user bigbugai \
  https://www.bigbug.ai/mcp \
  --header "Authorization: Bearer bbe_<YOUR_KEY>"

Cursor

~/.cursor/mcp.json on macOS

{
  "mcpServers": {
    "bigbugai": {
      "url": "https://www.bigbug.ai/mcp",
      "headers": {
        "Authorization": "Bearer bbe_<YOUR_KEY>"
      }
    }
  }
}

Devin

~/.config/devin/mcp_config.json on macOS

{
  "mcpServers": {
    "bigbugai": {
      "url": "https://www.bigbug.ai/mcp",
      "transport": "http",
      "headers": {
        "Authorization": "Bearer bbe_<YOUR_KEY>"
      }
    }
  }
}

Confirm command

curl -sS https://www.bigbug.ai/mcp \
  -H "Authorization: Bearer bbe_<YOUR_KEY>" \
  -H "Content-Type: application/json" \
  -d @- <<'EOF'
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "verify",
    "arguments": {
      "instruction": "add should return a+b",
      "diff": "--- a/add.py\n+++ b/add.py\n@@ -1,2 +1,2 @@\n def add(a, b):\n-    return a - b\n+    return a + b\n",
      "repo": {
        "target": "add.py",
        "files": [
          {
            "path": "add.py",
            "content": "def add(a, b):\n    return a - b\n"
          }
        ]
      }
    }
  }
}
EOF