Overview
azure-devops-mcp-server is a server designed to facilitate the MCP (Multi-Channel Pipeline) for Azure DevOps, enabling seamless integration and management of development workflows.
To use the azure-devops-mcp-server, clone the repository from GitHub, configure your Azure DevOps environment, and deploy the server to manage your multi-channel pipelines effectively.
- Integration with Azure DevOps for enhanced pipeline management - Support for multi-channel development workflows - Easy configuration and deployment process
- Managing complex CI/CD pipelines in Azure DevOps.
- Streamlining development processes across multiple channels.
- Enhancing collaboration among development teams.
Add to your AI client
Use these steps to connect azure-devops-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"azure-devops-mcp-server-munishm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-devops-mcp-server-munishm"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"azure-devops-mcp-server-munishm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-devops-mcp-server-munishm"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"azure-devops-mcp-server-munishm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-devops-mcp-server-munishm"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"azure-devops-mcp-server-munishm": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-devops-mcp-server-munishm"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"azure-devops-mcp-server-munishm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-devops-mcp-server-munishm"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"azure-devops-mcp-server-munishm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-devops-mcp-server-munishm"
]
}
}
}FAQ
What programming language is used for azure-devops-mcp-server?
The server is developed in Python.
Is azure-devops-mcp-server open source?
Yes! It is licensed under the Apache-2.0 license.
How can I contribute to the project?
You can contribute by submitting issues or pull requests on the GitHub repository.