Azure DevOps MCP Server

DevOpsstdiohttp-streaming
代码仓库

Microsoft's official MCP server for Azure DevOps. Brings Azure DevOps capabilities to AI agents, including managing work items and boards, browsing Git repositories and pull requests, querying builds and pipelines, and accessing wikis and test plans. Lets teams drive their Azure DevOps workflows through natural language from MCP-compatible tools.

连接

将此配置添加到 .claude/mcp.json

传输方式:
{
  "mcpServers": {
    "azure-devops": {
      "command": "npx",
      "args": [
        "-y",
        "@azure-devops/mcp",
        "<your-organization>"
      ],
      "env": {
        "ADO_ORG": "<YOUR_ADO_ORG>"
      }
    }
  }
}

工具 (3)

list_work_items

List or query work items from an Azure DevOps project.

{
  "type": "object",
  "required": [
    "project"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Optional WIQL query to filter work items"
    },
    "project": {
      "type": "string",
      "description": "Project name"
    }
  }
}

list_pull_requests

List pull requests in an Azure DevOps repository.

{
  "type": "object",
  "required": [
    "project",
    "repository"
  ],
  "properties": {
    "status": {
      "type": "string",
      "description": "Filter by status (active, completed, abandoned)"
    },
    "project": {
      "type": "string",
      "description": "Project name"
    },
    "repository": {
      "type": "string",
      "description": "Repository name"
    }
  }
}

list_builds

List recent pipeline builds for a project.

{
  "type": "object",
  "required": [
    "project"
  ],
  "properties": {
    "project": {
      "type": "string",
      "description": "Project name"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Microsoft (@microsoft)
代码仓库
https://github.com/microsoft/azure-devops-mcp
星标
0
最后更新
2026年7月12日