Ado MCP Server

A Model Context Protocol server

Local serverstdioTypeScript

What is the Ado MCP server?

Ado mcp server connects Ado to AI assistants that speak the Model Context Protocol. A Model Context Protocol server.

What Ado does

This Model Context Protocol (MCP) server provides integration with Azure DevOps, allowing Cline and Roo Code to interact with Azure DevOps services.

Tools it exposes

Once connected, the assistant can call these 4 tools directly:

  • Boards — The Boards tool exposed by this server
  • Pipelines — The Pipelines tool exposed by this server
  • Wiki — The Wiki tool exposed by this server
  • Projects — The Projects tool exposed by this server

Installing the ado mcp server

The server is distributed via npm as @smithery/cli, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

The server reads 3 environment variables: AZURE_DEVOPS_ORG, AZURE_DEVOPS_PAT, AZURE_DEVOPS_PROJECT. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Node.js (v20 LTS or higher) - npm (comes with Node.js) - A Cline installation - Azure DevOps account with access tokens

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Ado sits in that group, and the shape of its toolset — Boards, Pipelines, Wiki among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • Maintained by cakriwut, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the ado mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
BoardsThe Boards tool exposed by this server.
PipelinesThe Pipelines tool exposed by this server.
WikiThe Wiki tool exposed by this server.
ProjectsThe Projects tool exposed by this server.

How to install the Ado MCP server

{
  "mcpServers": {
    "ado": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"],
      "env": {
        "AZURE_DEVOPS_ORG": "your-value",
        "AZURE_DEVOPS_PAT": "your-value",
        "AZURE_DEVOPS_PROJECT": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js (v20 LTS or higher) - npm (comes with Node.js) - A Cline installation - Azure DevOps account with access tokens
VariableDescriptionRequired
AZURE_DEVOPS_ORGConfiguration value read at startup.Optional
AZURE_DEVOPS_PATConfiguration value read at startup.Optional
AZURE_DEVOPS_PROJECTConfiguration value read at startup.Optional

Example prompts to try

  • Use Ado to Boards.
  • Use Ado to Pipelines.
  • Use Ado to Wiki.

Frequently asked questions

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