Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

azure-devops-mcp

MCP.Pizza Chef: kevinmeyvaert

Azure DevOps MCP is a server implementation of the Model Context Protocol that integrates with Azure DevOps. It allows AI assistants to programmatically access and manage Azure DevOps resources such as projects, work items, repositories, and code search. Built on Node.js and using the official Azure DevOps SDK, it supports real-time server-sent events (SSE) for seamless AI-driven workflows.

Use This MCP server To

Manage Azure DevOps projects programmatically via AI Create and update work items through AI commands Perform repository operations like commits and branches Search codebases within Azure DevOps using AI queries Enable AI assistants to monitor Azure DevOps events in real-time

README

Azure DevOps MCP (Model Context Protocol)

This project serves as a reference server implementation for the Model Context Protocol (MCP) integrated with Azure DevOps. It enables AI assistants to interact with Azure DevOps resources and perform operations programmatically.

Features

  • Azure DevOps integration using official Node.js SDK
  • Support for Model Context Protocol (MCP)
  • Project management operations
  • Work item management
  • Repository operations
  • Code search capabilities

Prerequisites

  • Node.js (v18 or higher recommended)
  • Azure DevOps account with appropriate permissions
  • Azure DevOps Personal Access Token (PAT)

Installation

  1. Clone the repository:
git clone <repository-url>
cd azure-devops-mcp
  1. Install dependencies:
npm install
  1. Configure environment variables:
    • Copy .env.example to .env
    • Fill in the required environment variables:
cp .env.example .env

Add to Cursor

npm start

Then add to Cursor:

Make sure you use the path http://localhost:3000/sse. You can change ports by defining one in the env.

Add to Cursor

Environment Configuration

The following environment variables need to be configured in your .env file:

  • AZURE_DEVOPS_ORG_URL: Your Azure DevOps organization URL
  • AZURE_DEVOPS_PAT: Personal Access Token for Azure DevOps
  • Additional configuration variables as specified in .env.example

Available Scripts

  • npm run build - Build the TypeScript project
  • npm run dev - Run the server in development mode with hot reload
  • npm start - Run the production server

License

MIT

azure-devops-mcp FAQ

How do I authenticate the Azure DevOps MCP server?
You authenticate using an Azure DevOps Personal Access Token (PAT) configured in environment variables.
What Node.js version is required to run this MCP server?
Node.js version 18 or higher is recommended for compatibility and performance.
Can this MCP server handle real-time updates from Azure DevOps?
Yes, it uses Server-Sent Events (SSE) to stream real-time updates to connected clients.
Is the Azure DevOps MCP server compatible with multiple Azure DevOps organizations?
Yes, it can be configured to access different organizations by adjusting the environment variables.
How do I install and start the Azure DevOps MCP server?
Clone the repo, install dependencies with npm, configure .env with your credentials, then run npm start.
Does this MCP server support all Azure DevOps APIs?
It supports key APIs for project, work item, repository, and code search operations via the official Node.js SDK.
Can I extend the Azure DevOps MCP server with custom operations?
Yes, since it is open source and built on Node.js, you can add additional API integrations as needed.
Which LLM providers can I use with this MCP server?
It is provider-agnostic and works with OpenAI, Anthropic Claude, Google Gemini, and others.