sentry mcp for VS Code
io.github.getsentry/sentry-mcp
MCP server for Sentry - error monitoring, issue tracking, and debugging for AI assistants
client:VS Code
transport:stdio
runtime:npm
Install sentry mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sentry-access-token",
"description": "SENTRY_ACCESS_TOKEN",
"password": true
}
],
"servers": {
"sentry-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@sentry/mcp-server"
],
"env": {
"SENTRY_ACCESS_TOKEN": "${input:sentry-access-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs