Ado MCP Server

MCP server for interacting with Azure DevOps (on-premises) WEM fork

Local serverstdio

What is the Ado MCP server?

MCP server for interacting with Azure DevOps (on-premises) WEM fork. That is what the ado mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

This project provides a lightweight server to interact with on-premises Azure DevOps, enabling automation, project management, and streamlined workflows.

The tools it exposes

The server publishes 2 tools. What each one is for:

  • Prerequisites — The Prerequisites tool exposed by this server
  • Installation — In your project, add a .vscode\mcp.json file and setup environment varibales with the following content:

What it needs from you

Configuration is passed through the environment: LOG_LEVEL, ADO_MCP_MODE, ADO_MCP_AUTH_TYPE, ADO_MCP_ORG_URL, ADO_MCP_API_VERSION, ADO_MCP_BATCH_API_VERSION, ADO_MCP_MARKDOWN_COMMENTS_API_VERSION, NODE_EXTRA_CA_CERTS. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  1. Install VS Code or VS Code Insiders 2. Install Node.js 20+ 3. Open VS Code in an empty folder

Getting it running

The server ships on npm as args, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

Among the cloud and infrastructure 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. Ado's toolset — Prerequisites, Installation — is a fair guide to whether it matches your workflow. It is maintained by lotfihoc; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Ado's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
PrerequisitesThe Prerequisites tool exposed by this server.
InstallationIn your project, add a .vscode\mcp.json file and setup environment varibales with the following content:

How to install the Ado MCP server

{
  "mcpServers": {
    "prem": {
      "command": "npx",
      "args": ["-y", "args"],
      "env": {
        "LOG_LEVEL": "your-value",
        "ADO_MCP_MODE": "your-value",
        "ADO_MCP_AUTH_TYPE": "your-value",
        "ADO_MCP_ORG_URL": "your-value",
        "ADO_MCP_API_VERSION": "your-value",
        "ADO_MCP_BATCH_API_VERSION": "your-value",
        "ADO_MCP_MARKDOWN_COMMENTS_API_VERSION": "your-value",
        "NODE_EXTRA_CA_CERTS": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  1. Install VS Code or VS Code Insiders 2. Install Node.js 20+ 3. Open VS Code in an empty folder
VariableDescriptionRequired
LOG_LEVELConfiguration value read at startup.Optional
ADO_MCP_MODEConfiguration value read at startup.Optional
ADO_MCP_AUTH_TYPEConfiguration value read at startup.Optional
ADO_MCP_ORG_URLEndpoint or connection string the server talks to.Yes
ADO_MCP_API_VERSIONConfiguration value read at startup.Optional
ADO_MCP_BATCH_API_VERSIONConfiguration value read at startup.Optional
ADO_MCP_MARKDOWN_COMMENTS_API_VERSIONConfiguration value read at startup.Optional
NODE_EXTRA_CA_CERTSConfiguration value read at startup.Optional

Example prompts to try

  • Use Ado to Prerequisites.
  • Use Ado to Installation.

Frequently asked questions

It connects Ado to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Prerequisites, Installation) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ado directly.