TAPD MCP Server for VS Code
io.github.scizuixiangsis/tapd-mcp-server
在 Cursor/Copilot 中查询、分析和回填 TAPD bug / 需求
client:VS Code
transport:stdio
runtime:npm
Install TAPD MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tapd-access-token",
"description": "TAPD_ACCESS_TOKEN",
"password": true
}
],
"servers": {
"tapd-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tapd-mcp-server"
],
"env": {
"TAPD_ACCESS_TOKEN": "${input:tapd-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