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.
Connect
Add this configuration to .claude/mcp.json
Transport:
{
"mcpServers": {
"azure-devops": {
"command": "npx",
"args": [
"-y",
"@azure-devops/mcp",
"<your-organization>"
],
"env": {
"ADO_ORG": "<YOUR_ADO_ORG>"
}
}
}
}Tools (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"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- Microsoft (@microsoft)
- Stars
- 0
- Last Updated
- July 12, 2026