Azure DevOps Bridge
STDIOMCP integration server for managing Azure DevOps work items, wiki, and sprint planning.
MCP integration server for managing Azure DevOps work items, wiki, and sprint planning.
A Model Context Protocol (MCP) integration server for Azure DevOps. This focused integration allows you to manage work items, wiki documentation, sprint planning, and handle attachments and discussions seamlessly.
Connect with Azure DevOps for comprehensive project management:
Install Go using one of these package managers:
Using winget:
winget install GoLang.Go
Using Chocolatey:
choco install golang
Using Scoop:
scoop install go
After installation, verify with:
go version
Install Go using Homebrew:
brew install go
Verify the installation:
go version
git clone https://github.com/krishh-amilineni/mcp-azuredevops-bridge.git cd mcp-azuredevops-bridge go build
export AZURE_DEVOPS_ORG="your-org" export AZDO_PAT="your-pat-token" export AZURE_DEVOPS_PROJECT="your-project"
{ "mcpServers": { "azuredevops-bridge": { "command": "/full/path/to/mcp-azuredevops-bridge/mcp-azuredevops-bridge", "args": [], "env": { "AZURE_DEVOPS_ORG": "organization", "AZDO_PAT": "personal_access_token", "AZURE_DEVOPS_PROJECT": "project" } } } }
"Create a user story for the new authentication feature in Azure DevOps"
"Create a wiki page documenting the API endpoints for our service" "List all wiki pages in our project wiki" "Get the content of the 'Getting Started' page from the wiki" "Show me all available wikis in my Azure DevOps project"
"Show me the current sprint's work items and their status"
"Add this screenshot as an attachment to work item #123"
The DevOps Bridge includes enhanced wiki functionality that can help you access documentation more effectively:
list_wiki_pages
- Lists all wiki pages, optionally from a specific pathget_wiki_page
- Retrieves the content of a specific wiki pagemanage_wiki_page
- Creates or updates a wiki pagesearch_wiki
- Searches for content across wiki pagesget_available_wikis
- Lists all available wikis in your Azure DevOps organizationIf you're having trouble accessing wiki content:
get_available_wikis
tool to see all available wikis and their IDsThis integration uses Personal Access Tokens (PAT) for authenticating with Azure DevOps. Ensure your PAT has the appropriate permissions for the operations you want to perform.
This project was inspired by and draws from the original work at TheApeMachine/mcp-server-devops-bridge. We appreciate their contribution to the open source community.
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)