Skip to content
VS Code

Azure Boards MCP for VS Code

io.github.broisnischal/azure-mcp

Azure DevOps Boards work items over MCP (stdio). Requires Bun, org, project, and PAT.

client:VS Code transport:stdio runtime:npm

Install Azure Boards MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "azure-org",
      "description": "AZURE_ORG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azure-project",
      "description": "AZURE_PROJECT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azure-pat",
      "description": "AZURE_PAT",
      "password": true
    }
  ],
  "servers": {
    "azure-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "azure-board-mcp"
      ],
      "env": {
        "AZURE_ORG": "${input:azure-org}",
        "AZURE_PROJECT": "${input:azure-project}",
        "AZURE_PAT": "${input:azure-pat}"
      }
    }
  }
}

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

Azure Boards MCP in other clients