mcp backlog for VS Code
io.github.vfa-khuongdv/mcp-backlog
MCP server for Backlog API integration with AI agents.
client:VS Code
transport:stdio
runtime:npm
Install mcp backlog in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "backlog-host",
"description": "BACKLOG_HOST",
"password": true
},
{
"type": "promptString",
"id": "backlog-api-key",
"description": "BACKLOG_API_KEY",
"password": true
}
],
"servers": {
"mcp-backlog": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@duongkhuong/mcp-backlog"
],
"env": {
"BACKLOG_HOST": "${input:backlog-host}",
"BACKLOG_API_KEY": "${input:backlog-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