killbottleneck for VS Code
com.killbottleneck/killbottleneck
Goal and process maps for humans and AI agents on your own server.
client:VS Code
transport:stdio
runtime:npm
Install killbottleneck in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kb-url",
"description": "KB_URL",
"password": true
},
{
"type": "promptString",
"id": "kb-api-key",
"description": "KB_API_KEY",
"password": true
}
],
"servers": {
"killbottleneck": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"killbottleneck-mcp"
],
"env": {
"KB_URL": "${input:kb-url}",
"KB_API_KEY": "${input:kb-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