Skip to content
VS Code

mcp azure devops for VS Code

io.github.dockndevai/mcp-azure-devops

Azure DevOps boards, repos, pipelines & projects for AI agents — governed.

client:VS Code transport:stdio runtime:npm

Install mcp azure devops in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "azdo-org-url",
      "description": "AZDO_ORG_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azdo-pat",
      "description": "AZDO_PAT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azdo-mode",
      "description": "AZDO_MODE",
      "password": true
    }
  ],
  "servers": {
    "mcp-azure-devops": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dockndevai/mcp-azure-devops"
      ],
      "env": {
        "AZDO_ORG_URL": "${input:azdo-org-url}",
        "AZDO_PAT": "${input:azdo-pat}",
        "AZDO_MODE": "${input:azdo-mode}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp azure devops in other clients