what is Azure DevOps MCP Server?
Azure DevOps MCP Server is a Model Context Protocol (MCP) server designed for integrating with Azure DevOps services, allowing users to query repositories, pull requests, and other resources through the MCP interface.
how to use Azure DevOps MCP Server?
To use the server, clone the repository, install the dependencies, set up your Azure DevOps Personal Access Token (PAT), and start the server using npm.
key features of Azure DevOps MCP Server?
- Standardized interaction with Azure DevOps resources via MCP.
- Ability to query repositories and pull requests.
- Integration capability with AI assistants and other tools supporting MCP.
use cases of Azure DevOps MCP Server?
- Querying Azure DevOps repositories for information.
- Integrating with AI tools to automate DevOps tasks.
- Facilitating pull request management through standardized queries.
FAQ from Azure DevOps MCP Server?
- What are the prerequisites for using the server?
You need Node.js (v16 or higher), npm or yarn, TypeScript, and an Azure DevOps account with a Personal Access Token (PAT).
- How do I set up the Personal Access Token?
Create a PAT in Azure DevOps with appropriate permissions and set it as an environment variable.
- Can I integrate this server with other tools?
Yes! The server is designed to be integrated with any tools that support the Model Context Protocol.
Azure DevOps MCP Server
A Model Context Protocol (MCP) server for integrating with Azure DevOps services. This server implements tools for querying Azure DevOps repositories, pull requests, and other resources through the MCP interface.
Overview
This MCP server provides a standardized way to interact with Azure DevOps resources through the Model Context Protocol. It can be used to query repositories, pull requests, and other Azure DevOps resources, making them accessible to AI assistants and other tools that support MCP.
Prerequisites
- Node.js (v16 or higher)
- npm or yarn
- TypeScript
- Azure DevOps account with a Personal Access Token (PAT)
Installation
-
Clone the repository:
git clone <repository-url> cd azure-devops-mcp-server
-
Install dependencies:
npm install
-
Build the project:
npm run build
Configuration
Before using the server, you need to set up your Azure DevOps Personal Access Token (PAT):
- Create a PAT in Azure DevOps with appropriate permissions (at minimum, read access to repositories)
- Set the PAT as an environment variable:
export AZURE_DEVOPS_PAT=your_pat_here
Usage
Start the server:
npm start
The server runs on stdio, making it suitable for integration with tools that support the Model Context Protocol.