debugai mcp for VS Code
io.github.1shizaan/debugai-mcp
MCP server for DebugAI. Browser sign-in, auto client setup, no key pasting.
client:VS Code
transport:stdio
runtime:npm
Install debugai mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "debugai-api-key",
"description": "DEBUGAI_API_KEY",
"password": true
}
],
"servers": {
"debugai-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@debugai/mcp"
],
"env": {
"DEBUGAI_API_KEY": "${input:debugai-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