AgentHubAgentHub

Azure Boards MCP

MCP ServerMCP Registry官方收录

io.github.broisnischal/azure-mcp · v1.0.0

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

概览

Azure Boards MCP 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "azure-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "azure-board-mcp"
      ],
      "env": {
        "AZURE_ORG": "<AZURE_ORG>",
        "AZURE_PROJECT": "<AZURE_PROJECT>",
        "AZURE_PAT": "<AZURE_PAT>"
      }
    }
  }
}

环境变量

AZURE_ORG必填

Azure DevOps organization name

AZURE_PROJECT必填

Azure DevOps project name

AZURE_PAT必填secret

Personal access token (Work Items: Read & Write)

相关资源

统一 Manifest

{
  "id": "io.github.broisnischal/azure-mcp",
  "type": "mcp-server",
  "version": "1.0.0",
  "displayName": "Azure Boards MCP",
  "description": "Azure DevOps Boards work items over MCP (stdio). Requires Bun, org, project, and PAT.",
  "repository": {
    "url": "https://github.com/broisnischal/azure-mcp",
    "source": "github"
  },
  "homepage": "https://github.com/broisnischal/azure-mcp",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "azure-board-mcp",
        "version": "1.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AZURE_ORG",
            "description": "Azure DevOps organization name",
            "isRequired": true
          },
          {
            "name": "AZURE_PROJECT",
            "description": "Azure DevOps project name",
            "isRequired": true
          },
          {
            "name": "AZURE_PAT",
            "description": "Personal access token (Work Items: Read & Write)",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.broisnischal/azure-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.broisnischal%2Fazure-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Azure Boards MCP — MCP Server 安装与配置 · AgentHub