Azure DevOps On-Premises for VS Code
io.github.zwitbaum/mcp-devops-on-prem
MCP server for on-premises Azure DevOps Server and TFS: repos, pull requests, work items, and wiki.
client:VS Code
transport:stdio
runtime:pypi
Install Azure DevOps On-Premises in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "devops-api-url",
"description": "DEVOPS_API_URL",
"password": true
},
{
"type": "promptString",
"id": "devops-username",
"description": "DEVOPS_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "devops-password",
"description": "DEVOPS_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "devops-pat",
"description": "DEVOPS_PAT",
"password": true
},
{
"type": "promptString",
"id": "devops-token",
"description": "DEVOPS_TOKEN",
"password": true
}
],
"servers": {
"mcp-devops-on-prem": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-devops-onpremise"
],
"env": {
"DEVOPS_API_URL": "${input:devops-api-url}",
"DEVOPS_USERNAME": "${input:devops-username}",
"DEVOPS_PASSWORD": "${input:devops-password}",
"DEVOPS_PAT": "${input:devops-pat}",
"DEVOPS_TOKEN": "${input:devops-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs