What it does
A local Node.js MCP server that bridges Azure DevOps and AI agents. Exposes tools to query ADO projects, repositories, builds, test plans, iterations, and wiki content, plus support for creating and updating wikis programmatically. Runs as a stdio process configured through .vscode/mcp.json. The server provides a thin abstraction over ADO REST APIs, letting Claude and agents access project data without switching tools. Microsoft now recommends the Azure-hosted Remote MCP Server for new users; this local variant is maintained as an alternative.
Who it's for
Azure DevOps teams in VS Code integrating ADO workflows into Claude or AI agents—particularly those who need to query work items, builds, repository metadata, and documentation without context switching.
Common use cases
- Query ADO projects and list builds or repository branches
- Retrieve work items and test plans for a given iteration or project
- Create or update wiki pages from an agent prompt
- Ground agent decisions in live ADO state (team membership, build status)
Setup pitfalls
- Requires Node.js 20+ and VS Code; older Node versions or other IDEs are not supported
- Filesystem write access required for wiki operations and state persistence—sandboxed environments may fail
- One secret detected in the codebase—ensure ADO API tokens are stored as environment variables, never hardcoded in config
- Officially deprecated in favor of the Remote MCP Server; evaluate Azure-hosted option for new projects