teamcity for VS Code
io.github.daghis/teamcity
MCP server exposing JetBrains TeamCity CI/CD workflows to AI coding assistants
client:VS Code
transport:stdio
runtime:npm
Install teamcity in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "teamcity-url",
"description": "TEAMCITY_URL",
"password": true
},
{
"type": "promptString",
"id": "teamcity-token",
"description": "TEAMCITY_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "mcp-mode",
"description": "MCP_MODE",
"password": true
}
],
"servers": {
"teamcity": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@daghis/teamcity-mcp"
],
"env": {
"TEAMCITY_URL": "${input:teamcity-url}",
"TEAMCITY_TOKEN": "${input:teamcity-token}",
"MCP_MODE": "${input:mcp-mode}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs