Azure DevOps MCP Server
# Azure DevOps MCP Server
[š®š· ŁŲ³Ų®Ł ŁŲ§Ų±Ų³Ū](README.fa.md)
A [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server for **Azure DevOps Server 2022** (on-premise) that exposes Azure DevOps capabilities as AI-callable tools ā letting any MCP-compatible AI assistant query pipelines, pull requests, builds, repositories, and work items through natural language.
[](https://www.typescriptlang.org/)
[](https://nodejs.org/)
[](https://modelcontextprotocol.io)
[](https://www.docker.com/)
[](https://kubernetes.io/)
---
## What can it do?
Ask your AI assistant in plain language ā the MCP server handles the Azure DevOps REST API calls:
**Simple queries**
```
"List all projects in the collection"
"What branches does the backend repository have?"
"Show me all open pull requests"
"What's the status of the last build?"
"Who is assigned to work item #42?"
"Read the appsettings.json from the main branch"
```
**Moderate queries**
```
"List all failed builds in the last 24 hours and which pipelines they belong to"
"Show me the open PRs targeting the main branch and their reviewers"
"Find all active bugs in the project"
"Create a pull request from feature/payment to develop with a description"
"Add John as a reviewer to PR #87"
"Run the pipeline named 'deploy-staging' on the release branch"
"What was the last pipeline that ran on agent pool win19-prod-bi?"
"How many builds completed this week compared to last week?"
"How many build agents are online right now?"
```
**Complex queries**
```
"Which PRs opened in the last 48 hours still have no reviewer? Group them by repository."
"Get the logs of the last failed build for the 'deploy-prod' pipeline and summarize what went wrong"
"Find all In Progress work items assigned to me and list them by priority"
"Show me all unresolved review comments on PR #112 ā what feedback is still pending?"
"How many completed builds ran in the last 7 days vs the 7 days before that? What is the percentage change?"
"Find high-priority work items that haven't been updated in more than 3 days"
"Which repositories have open PRs with no reviewer and at least one unresolved comment?"
"Which agent pools are available, and how many agents are online in each pool?"
```
---
## Available Tools
### Projects
| Tool | Description |
|------|-------------|
| `list_projects` | List all projects in the collection |
### Repositories & Branches
| Tool | Description |
|------|-------------|
| `list_repositories` | List Git repositories in a project |
| `list_branches` | List branches of a repository |
| `get_file_content` | Read file content from a repository at any branch |
### Pull Requests
| Tool | Description |
|------|-------------|
| `list_pull_requests` | List PRs across all repos in a project (filter by status) |
| `list_prs_without_reviewer` | Find open PRs with no reviewer, with optional time window (e.g. last 24 hours) |
| `get_pull_request` | Get PR details: description, merge status, reviewers and their votes |
| `get_pr_comments` | Get review comment threads on a PR (filter by active/resolved) |
| `add_pr_reviewer` | Add a reviewer to a PR by email or display name |
| `create_pull_request` | Create a new PR from source to target branch (supports draft) |
### Pipelines & Builds
| Tool | Description |
|------|-------------|
| `list_pipelines` | List all pipeline definitions in a project |
| `list_agent_pools` | List available agent pools/queues in a project |
| `list_agents` | List agents across all pools or a specific pool with online/offline status and counts |
| `get_last_build` | Get the most recent build ā filter by pipeline name or agent pool name |
| `list_builds` | List builds with filters: pipeline (by ID or `definitionNameFilter` partial name match, e.g. "prod"), `statusFilter` (running state) and `resultFilter` (succeeded/failed/canceled), agent pool, and date range (`minTime`/`maxTime`). Includes `webUrl` per build and a `truncated` flag warning when older builds near `minTime` may be cut off by the `top` limit |
| `list_failed_builds` | Find failed/partial builds in the last N hours |
| `get_build` | Get details of a specific build |
| `get_build_logs` | Fetch console log output of a build (auto-truncated, last 150 lines). Set `errorsOnly=true` to return only error/warning lines ā much smaller and faster for diagnosing failures |
| `run_pipeline_by_name` | Find and run a pipeline by name (partial match, no ID needed) |
| `run_pipeline` | Queue a pipeline run by numeric ID |
### Work Items
| Tool | Description |
|------|-------------|
| `list_work_items` | Search work items by type, state, assignee, or keyword using WIQL |
| `get_work_item` | Get full details of a work item by ID |
| `create_work_item` | Create a new work item (Bug, Task, User Story, etc.) |
| `update_work_item` | Update fields of an existing work item (state, assignee, title, etc.) |
### Classic Release Pipelines
| Tool | Description |
|------|-------------|
| `list_release_definitions` | List classic release pipeline definitions with their stages |
| `list_releases` | List releases with per-stage deployment status ā filter by pipeline name and/or stage name (e.g. "last release deployed to Shatel") |
| `get_release` | Get full details of a release: all stage statuses, deploy times, and artifact versions |
| `get_release_changes` | Get the list of commits / TFVC changesets included in a release (answers "what changed in this deployment?") |
---
## Architecture
```
AI Client (Claude, Open WebUI, etc.)
ā MCP Protocol (JSON-RPC)
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Azure DevOps MCP ā
ā āāāāāāāāāāāāāāāāā ā
ā HTTP (Kubernetes) or ā
ā stdio (local) ā
ā ā
ā tools/ ā
ā projects.ts ā
ā repos.ts ā
ā pipelines.ts ā
ā workitems.ts ā
āāāāāāāāāāāāāā¬āāāāāāāāāāāāā
ā REST API (api-version 7.0)
ā Basic Auth (PAT)
ā¼
āāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Azure DevOps Server ā
ā 2022 (on-premise) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāā
```
- **Transport:** Stateless Streamable HTTP for Kubernetes (scales horizontally, no sticky sessions) or stdio for local use
- **Auth:** Personal Access Token via HTTP Basic auth (`Authorization: Basic base64(:<PAT>)`)
- **API version:** 7.0 ā the highest supported by Azure DevOps Server 2022.0.x
---
## Requirements
- Node.js 20+
- Azure DevOps Server 2022 (on-premise)
- A Personal Access Token with:
- `Code (Read & Write)` ā for repo, branch, file, and pull request tools
- `Build (Read & Execute)` ā for pipeline and build tools
- `Work Items (Read & Write)` ā for work item tools
---
## Quick Start
### Local (stdio ā for Claude Desktop / Claude Code)
```bash
npm install
npm run build
# Register with Claude Code
claude mcp add azure-devops \
--env AZDO_ORG_URL=https://your-server.example.com/YourCollection \
--env AZDO_PAT=your_pat_here \
--env AZDO_PROJECT=YourProject \
-- node dist/index.js
```
### Docker
```bash
# Build
docker build -t your-registry/azure-devops-mcp:1.0.0 .
# Run locally for testing
docker run -p 3000:3000 \
-e AZDO_ORG_URL=https://your-server.example.com/YourCollection \
-e AZDO_PAT=your_pat_here \
-e AZDO_PROJECT=YourProject \
your-registry/azure-devops-mcp:1.0.0
```
### Kubernetes
```bash
# 1. Create namespace
kubectl create namespace mcp-servers
# 2. Create secret (keep PAT out of git)
kubectl create secret generic azure-devops-mcp-secret \
--namespace mcp-servers \
--from-literal=AZDO_PAT='your_pat_here'
# 3. Edit k8s/configmap.yaml with your AZDO_ORG_URL and AZDO_PROJECT
# 4. Apply manifests
kubectl apply -f k8s/configmap.yaml
kubectl apply -f k8s/deployment.yaml
kubectl apply -f k8s/service.yaml
# 5. Verify
kubectl -n mcp-servers rollout status deploy/azure-devops-mcp
```
In-cluster endpoint:
```
http://azure-devops-mcp.mcp-servers.svc.cluster.local/mcp
```
### Quick test with port-forward
```bash
# Terminal 1
kubectl -n mcp-servers port-forward deploy/azure-devops-mcp 3000:3000
# Terminal 2 ā health check
curl http://127.0.0.1:3000/healthz
# Terminal 2 ā list projects
curl -sS -X POST http://127.0.0.1:3000/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
--data-binary '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_projects","arguments":{}}}'
```
---
## Configuration
### Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| `AZDO_ORG_URL` | Yes | Collection URL, e.g. `https://your-server.example.com/YourCollection` |
| `AZDO_PAT` | Yes | Personal Access Token |
| `AZDO_PROJECT` | No | Default project ā avoids passing project name in every request |
| `AZDO_API_VERSION` | No | Default: `7.0` |
| `MCP_TRANSPORT` | No | `http` for Kubernetes, `stdio` for local (default: `stdio`) |
| `PORT` | No | HTTP port, default: `3000` |
| `MCP_PATH` | No | Endpoint path, default: `/mcp` |
### `.env` example
```env
AZDO_ORG_URL=https://your-server.example.com/YourCollection
AZDO_PAT=your_pat_here
AZDO_PROJECT=YourProject
MCP_TRANSPORT=http
PORT=3000
```
---
## Project Structure
```
src/
āāā index.ts Entry point ā selects transport based on MCP_TRANSPORT
āāā config.ts Env var reading and validation
āāā server.ts MCP server construction and tool registration
āāā azureClient.ts REST client with PAT Basic auth and 30s timeout
āāā httpServer.ts Stateless Streamable HTTP transport for Kubernetes
āāā tools/
āāā projects.ts Project discovery tools
āāā repos.ts Repository, branch, and pull request tools
āāā pipelines.ts Pipeline and build tools
āāā workitems.ts Work item tools (WIQL, create, update)
āāā helpers.ts Shared utilities (response formatting, truncation)
k8s/
āāā configmap.yaml Non-secret configuration
āāā deployment.yaml Kubernetes Deployment (non-root, read-only FS)
āāā service.yaml ClusterIP Service
```
---
## Technical Notes
- **Stateless HTTP:** Each request creates an independent MCP server instance ā scales horizontally without sticky sessions.
- **Health check:** `GET /healthz` for Kubernetes liveness and readiness probes.
- **API version 7.0:** Azure DevOps Server 2022.0.x supports up to 7.0 only. Version 7.1 is available in Azure DevOps Services (cloud) and Server 2022.1+.
- **Response truncation:** Tool responses are capped at 24,000 characters to avoid flooding the model context window.
- **Request timeout:** All Azure DevOps API calls abort after 30 seconds with a clear error message.
- **Container security:** Runs as non-root user 1000, read-only root filesystem, all Linux capabilities dropped.
- **Weak model friendly:** Tools return pre-processed, ready-to-answer data rather than raw JSON ā works well with smaller models that struggle to process large API responses.
---
## License
MIT
TDQS
Scored across 16 tools
Each tool has a clearly distinct purpose: PR creation vs retrieval, build logs vs build listing, specialized tools for failed builds or unreviewed PRs. There is no functional overlap that would cause ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_pull_request, get_last_build, list_repositories). The naming is predictable and uniform across the entire set.
16 tools cover core Azure DevOps operations (projects, repos, branches, PRs, builds, pipelines) without being bloated. Each tool serves a necessary function, and the count is appropriate for the domain.
The tool surface covers essential CRUD-like operations for PRs, builds, and pipelines. Minor gaps exist (e.g., no update or merge for PRs, no build cancellation), but the most common agent scenarios are supported.