Skip to content
VS Code

Bugfender for VS Code

io.github.bugfender/mcp

Access Bugfender logs, crashes, devices, and user feedback from MCP-enabled clients.

client:VS Code transport:stdio runtime:npm

Install Bugfender in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bugfender-api-token",
      "description": "BUGFENDER_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bugfender-refresh-token",
      "description": "BUGFENDER_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bugfender-api-url",
      "description": "BUGFENDER_API_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bugfender/mcp"
      ],
      "env": {
        "BUGFENDER_API_TOKEN": "${input:bugfender-api-token}",
        "BUGFENDER_REFRESH_TOKEN": "${input:bugfender-refresh-token}",
        "BUGFENDER_API_URL": "${input:bugfender-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

Bugfender in other clients