Skip to content
VS Code

DebugBundle for VS Code

com.debugbundle/mcp

DebugBundle MCP: runtime error reporting, incident response, health checks, and product analytics.

client:VS Code transport:stdio runtime:npm

Install DebugBundle in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "debugbundle-member-token",
      "description": "DEBUGBUNDLE_MEMBER_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "debugbundle-api-url",
      "description": "DEBUGBUNDLE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@debugbundle/mcp"
      ],
      "env": {
        "DEBUGBUNDLE_MEMBER_TOKEN": "${input:debugbundle-member-token}",
        "DEBUGBUNDLE_API_URL": "${input:debugbundle-api-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

DebugBundle in other clients