Skip to content
VS Code

sentry mcp server for VS Code

io.github.friendlygeorge/sentry-mcp-server

MCP server for Sentry — error tracking, issues, releases, events, and projects for AI assistants.

client:VS Code transport:stdio runtime:npm

Install sentry mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sentry-auth-token",
      "description": "SENTRY_AUTH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sentry-base-url",
      "description": "SENTRY_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "sentry-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sentry-mcp-server"
      ],
      "env": {
        "SENTRY_AUTH_TOKEN": "${input:sentry-auth-token}",
        "SENTRY_BASE_URL": "${input:sentry-base-url}"
      }
    }
  }
}

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

sentry mcp server in other clients