.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/tiberriver256/mcp-server-azure-devops
home/mcp-servers/tiberriver256/mcp-server-azure-devops
tiberriver256 avatar

mcp-server-azure-devops

bytiberriver256· 1 MCP server

Installs

24k

Stars

381

Forks

125

Category

DevOps & CI/CD

View on GitHub

TL;DR

A Model Context Protocol (MCP) server implementation for Azure DevOps, allowing AI assistants to interact with Azure DevOps APIs through a standardized protocol.

How to install mcp-server-azure-devops?

tiberriver256/mcp-server-azure-devops
$git clone https://github.com/tiberriver256/mcp-server-azure-devops

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-server-azure-devops by running `git clone https://github.com/tiberriver256/mcp-server-azure-devops`, then use it for the current task and follow its documentation at https://github.com/tiberriver256/mcp-server-azure-devops.

Files · 1

View on GitHub
README.md
1# Azure DevOps MCP Server
2 
3A Model Context Protocol (MCP) server implementation for Azure DevOps, allowing AI assistants to interact with Azure DevOps APIs through a standardized protocol.
4 
5> **Looking for the official server?** Microsoft maintains a product-supported Azure DevOps MCP at [microsoft/azure-devops-mcp](https://github.com/microsoft/azure-devops-mcp). If you use Azure DevOps Services (cloud), start there.
6>
7> This community server remains a good fit when you need **Azure DevOps Server (on-premises)** support — especially older versions that may not work with Microsoft's MCP — or features not yet available in the official server. See [Discussion #237](https://github.com/Tiberriver256/mcp-server-azure-devops/discussions/237) for more context.
8 
9## Overview
10 
11This server implements the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) for Azure DevOps, enabling AI assistants like Claude to interact with Azure DevOps resources securely. The server acts as a bridge between AI models and Azure DevOps APIs, providing a standardized way to:
12 
13- Access and manage projects, work items, repositories, and more
14- Create and update work items, branches, and pull requests
15- Execute common DevOps workflows through natural language
16- Access repository content via standardized resource URIs
17- Safely authenticate and interact with Azure DevOps resources
18 
19## Server Structure
20 
21The server is structured around the Model Context Protocol (MCP) for communicating with AI assistants. It provides tools for interacting with Azure DevOps resources including:
22 
23- Projects
24- Work Items
25- Repositories
26- Pull Requests
27- Branches
28- Pipelines
29 
30### Core Components
31 
32- **AzureDevOpsServer**: Main server class that initializes the MCP server and registers tools
33- **Feature Modules**: Organized by feature area (work-items, projects, repositories, etc.)
34- **Request Handlers**: Each feature module provides request identification and handling functions
35- **Tool Handlers**: Modular functions for each Azure DevOps operation
36- **Configuration**: Environment-based configuration for organization URL, PAT, etc.
37 
38The server uses a feature-based architecture where each feature area (like work-items, projects, repositories) is encapsulated in its own module. This makes the codebase more maintainable and easier to extend with new features.
39 
40## Getting Started
41 
42### Prerequisites
43 
44- Node.js (v16+)
45- npm or yarn
46- Azure DevOps account with appropriate access
47- Authentication credentials (see [Authentication Guide](https://github.com/tiberriver256/mcp-server-azure-devops/blob/main/docs/authentication.md) for details):
48 - Personal Access Token (PAT), or
49 - Azure Identity credentials, or
50 - Azure CLI login
51 
52### Running from npm (npx)
53 
54If you just want to run the **published** server package, you **do not** need to clone or build this repository:
55 
56```bash
57npx -y @tiberriver256/mcp-server-azure-devops
58```
59 
60### Running locally (from source)
61 
62From a checkout of this repository:
63 
64```bash
65npm ci
66cp .env.example .env # then edit values
67npm run build
68npm start # runs: node dist/index.js
69```
70 
71For iterative development (auto-reload):
72 
73```bash
74npm run dev # runs src/index.ts via ts-node-dev
75```
76 
77### Usage with Claude Desktop/Cursor AI
78 
79To integrate with Claude Desktop or Cursor AI, add one of the following configurations to your configuration file.
80 
81#### Azure Identity Authentication
82 
83Be sure you are logged in to Azure CLI with `az login` then add the following:
84 
85```json
86{
87 "mcpServers": {
88 "azureDevOps": {
89 "command": "npx",
90 "args": ["-y", "@tiberriver256/mcp-server-azure-devops"],
91 "env": {
92 "AZURE_DEVOPS_ORG_URL": "https://dev.azure.com/your-organization",
93 "AZURE_DEVOPS_AUTH_METHOD": "azure-identity",
94 "AZURE_DEVOPS_DEFAULT_PROJECT": "your-project-name"
95 }
96 }
97 }
98}
99```
100 
101#### Personal Access Token (PAT) Authentication
102 
103```json
104{
105 "mcpServers": {
106 "azureDevOps": {
107 "command": "npx",

Preview

tiberriver256/mcp-server-azure-devopstiberriver256/mcp-server-azure-devops

# Azure DevOps MCP Server

A Model Context Protocol (MCP) server implementation for Azure DevOps, allowing AI assistants to interact with Azure DevOps APIs through a standardized protocol

> **Looking for the official server?** Microsoft maintains a product-supported Azure DevOps MCP at [microsoft/azure-devops-mcp](https://github.com/microsoft/azu

>

Repotiberriver256/mcp-server-azure-devops
TypeMCP Servers
CategoryDevOps & CI/CD
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPaiazure-devops

Related

6 picks
Type
  1. circleci-public avatarmcp-server-circleciA Model Context Protocol (MCP) server implementation for CircleCI, enabling natural language interactions with CircleCI functionality through MCP-enabled clientsMCP ServersJul 2026141k86
  2. argoproj-labs avatarmcp-for-argocdArgo CD MCP ServerMCP ServersJul 202690k547
  3. flux159 avatarmcp-server-kubernetesMCP server for interacting with Kubernetes clusters via kubectlMCP ServersJul 202664k1.5k
  4. hookdeck avatarhookdeck-cliCLI for Hookdeck: forward webhooks to localhost (ngrok alternative), manage and query Event Gateway resources (sources, connections, destinations, events), run the MCP server for AI agents. Free for dev.MCP ServersJul 202647k358
  5. heroku avatarheroku-mcp-serverHeroku Platform MCP ServerMCP ServersJul 202626k80
  6. harness avatarmcp-serverGive AI agents full access to the Harness.io platform — manage pipelines, deployments, cloud costs, chaos engineering, feature flags, SEI, and 125+ resource types through 11 MCP toolsMCP ServersJul 202621k86