Skip to content
VS Code

bugherd mcp for VS Code

io.github.berckan/bugherd-mcp

BugHerd API v2 integration — 37 tools for projects, tasks, comments, and webhooks.

client:VS Code transport:stdio runtime:npm

Install bugherd mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bugherd-api-key",
      "description": "BUGHERD_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "bugherd-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "bugherd-mcp"
      ],
      "env": {
        "BUGHERD_API_KEY": "${input:bugherd-api-key}"
      }
    }
  }
}

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

bugherd mcp in other clients