A
Azure DevOps
Read work items, repos and pipelines on Azure DevOps.
·No reviews yet
Share:
About
Auto-generated
Azure DevOps is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Azure DevOps.
- What data can I access with the Azure DevOps MCP?
- The Azure DevOps MCP allows you to read work items, repositories, and pipelines from your Azure DevOps instance. It focuses on retrieval of existing data rather than modification or creation.
- How do I install the Azure DevOps MCP in a client application?
- Installation typically involves adding the MCP's slug, 'azure-devops', to your client's configuration. Specific steps vary by client, but it generally requires referencing the MCP by its identifier.
- Does the Azure DevOps MCP require authentication?
- Yes, this MCP uses API key authentication. You will need to provide a valid API key from your Azure DevOps organization to use its functionalities.
- What are the primary capabilities of the Azure DevOps MCP?
- It provides read-only access to core Azure DevOps entities. This includes fetching details about work items, listing and inspecting repositories, and querying information about your build and release pipelines.
- Is there a cost associated with using the Azure DevOps MCP?
- The MCP itself is open source and community-provided, so there is no direct cost for the MCP software. However, usage may incur costs with the underlying Azure DevOps service, depending on your subscription and usage tier.
- What is a common limitation when using the Azure DevOps MCP?
- A key limitation is its read-only nature; you cannot create, update, or delete resources within Azure DevOps using this MCP. Its primary function is to provide visibility into existing data.
Install Azure DevOps
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"azure-devops": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-devops"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"azure-devops": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-devops"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"azure-devops": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-devops"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.