A Model Context Protocol (MCP) server that provides comprehensive integration with Azure DevOps. This server enables AI assistants like Claude
A Model Context Protocol (MCP) server that provides comprehensive integration with Azure DevOps. This server enables AI assistants like Claude Desktop and development tools like VS Code to seamlessly interact with Azure DevOps through the. That is what the azuredevops.mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
The server publishes 14 tools. What each one is for:
list_projects — Lists all projects in the Azure DevOps organizationlist_repositories — Lists repositories in a specific projectlist_repository_items — Lists files and folders in a repository pathget_file_content — Gets the content of a specific file from a repositorylist_work_items — Lists work items in a specific projectget_work_item — Gets detailed information about a specific work itemadd_pull_request_comment — Adds a comment to a pull request (requires PullRequestComments)create_draft_pull_request — Creates a draft pull request (requires CreateDraftPullRequest)update_work_item_tags — Adds or removes tags from work items (requires UpdateWorkItemTags)batch_get_work_items — Retrieves multiple work items efficiently in parallelbatch_get_repositories — Gets multiple repository details in parallelget_test_plans — Gets test plans for a specific Azure DevOps projectSetup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. AzureDevOps.MCP's toolset — list_projects, list_repositories, list_repository_items and 11 more — is a fair guide to whether it matches your workflow. It is maintained by decriptor; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against AzureDevOps.MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| list_projects | Lists all projects in the Azure DevOps organization |
| list_repositories | Lists repositories in a specific project |
| list_repository_items | Lists files and folders in a repository path |
| get_file_content | Gets the content of a specific file from a repository |
| list_work_items | Lists work items in a specific project |
| get_work_item | Gets detailed information about a specific work item |
| add_pull_request_comment | Adds a comment to a pull request (requires PullRequestComments) |
| create_draft_pull_request | Creates a draft pull request (requires CreateDraftPullRequest) |
| update_work_item_tags | Adds or removes tags from work items (requires UpdateWorkItemTags) |
| batch_get_work_items | Retrieves multiple work items efficiently in parallel |
| batch_get_repositories | Gets multiple repository details in parallel |
| get_test_plans | Gets test plans for a specific Azure DevOps project |
| get_test_plan | Gets detailed information about a specific test plan |
| get_test_suites | Gets test suites for a specific test plan |
{
"mcpServers": {
"azure-devops": {
"command": "docker",
"args": [
"run", "-i",
"-e", "AzureDevOps__OrganizationUrl=https://dev.azure.com/your-organization",
"-e", "AzureDevOps__PersonalAccessToken=your-pat-goes-here",
"azuredevops-mcp"
]
}
}
}Configuration as documented by the project. Restart the client after saving.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.