Azure DevOps Integration

Working implementation of a SSE Server MCP for interfacing with Azure Devops

Installation

Installing for Claude Desktop

Option 1: One-Command Installation

npx mcpbar@latest install kevinmeyvaert/azure-devops-mcp -c claude

This command will automatically install and configure the Azure DevOps Integration MCP server for your selected client.

Option 2: Manual Configuration

Run the command below to open your configuration file:

npx mcpbar@latest edit -c claude

After opening your configuration file, copy and paste this configuration:

View JSON configuration
{
  "mcpServers": {
    "Azure DevOps Integration": {
      "command": "npx",
      "args": [
        "-y",
        "azure-devops-mcp"
      ],
      "env": {
        "AZURE_DEVOPS_ORG_URL": "${input:azure_devops_org_url}"
      }
    }
  }
}

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

Share:
Details:
  • Stars


    6
  • Forks


    3
  • Last commit


    4 months ago
  • Repository age


    4 months
View Repository

Auto-fetched from GitHub .

MCP servers similar to Azure DevOps Integration:

 

 
 
  • Stars


  • Forks


  • Last commit


 

 
 
  • Stars


  • Forks


  • Last commit


 

 
 
  • Stars


  • Forks


  • Last commit


Azure DevOps Integration: MCP Server – MCP.Bar