Azure DevOps Pull Request MCP Server
About
A Model Context Protocol (MCP) server that provides tools for interacting with Azure DevOps pull requests. It can retrieve pull request details, fetch thread comments, and create new comment threads at specific code locations. Built with C#/.NET using the ModelContextProtocol…
Details
- Author
- oshvartz
- GitHub stars
- 1
- Downloads
- 296
- Categories
- Cloud Service
Jump to
- Retrieves pull request details (GetPrDetails)
- Fetches pull request comment threads (GetPrThreads)
- Creates new comment threads at specific code locations (CreatePrThread)
- Supports Azure Identity and Personal Access Token authentication
- Built with C#/.NET using the ModelContextProtocol package
- Communicates via stdio transport
Clone the repo, build with dotnet build -c Release, then add the server to your VSCode MCP settings JSON with command "dotnet" and args pointing to the DLL. Authentication can be Azure Identity (DefaultAzureCredential, recommended) or PAT (set via AZURE_DEVOPS_PAT env). Run with dotnet run -- --pr-url <URL> (optionally --pat). Available tools: GetPrDetails, GetPrThreads, CreatePrThread.
Azure DevOps Pull Request MCP Server
A Model Context Protocol (MCP) server implementation focused on Azure DevOps pull request interactions. This server provides tools for accessing and manipulating Azure DevOps pull requests, built using the ModelContextProtocol NuGet package.
Overview
This MCP server is designed as a learning project to demonstrate integration with Azure DevOps pull request APIs through the Model Context Protocol. It provides tools for:
- Retrieving pull request details
- Fetching pull request threads/comments
- Creating new comment threads on specific code locations
Project Status
DISCLAIMER: This project is still a Work in Progress (WIP)
Upcoming Features
- [ ] Package server as a dotnet tool for easier installation and usage - [ ] Enhanced thread support: - [ ] Ability to respond to existing threads - [ ] Add comments to existing threads - [ ] Better thread management capabilitiesUsage Examples
PR Review Workflow
To perform a pull request review, you can use the following prompt template:I want us to review together PR https://dev.azure.com/org/project/_git/repo/pullrequest/123
First let's have high level review of the PR context and then let's drill down to changed files
and what was changed there - please share if you have any suggestions or you notice any issues.
Please verify you are in the local folder of the repo we are doing PR on and switch to the PR
branch to be able to look at files.
This will trigger the following workflow:
1. Retrieve PR details using GetPrDetails tool
2. Analyze PR context and scope
3. Review changed files in local repo
4. Provide suggestions using CreatePrThread tool
Creating a New Thread
var input = new AdoCreateThreadInput
{
PrUrl = "https://dev.azure.com/org/project/_git/repo/pullrequest/123",
Content = "Consider using a more descriptive variable name",
Context = new ThreadContext
{
FilePath = "src/file.cs",
StartLine = 10,
EndLine = 10
}
};
Example Review Session
Prompts you can use during the review:
1. Get PR Overview:
"Let's review PR https://dev.azure.com/org/project/_git/repo/pullrequest/123"
2. Focus on Specific File:
"Can you analyze the changes in src/file.cs?"
3. Add Comment:
"Please add a comment on line 45 of src/file.cs suggesting to use async/await"
4. Get Existing Comments:
"Show me all the review comments in this PR"
Each of these prompts will utilize the appropriate MCP tools:
- GetPrDetails for PR information
- GetPrThreads for existing comments
- CreatePrThread for adding new comments
Requirements
- .NET 8.0 SDK
- One of the following authentication methods:
1. Recommended: Azure Identity Authentication
- Uses DefaultAzureCredential from Azure.Identity
- More secure as it supports managed identities and other Azure authentication methods
- No PAT required
2. Legacy: Personal Access Token (PAT)
- Not recommended for security reasons
- If you must use PAT, it requires the following scopes:
- Code (Read & Write)
- Pull Request Threads (Read & Write)
Building and Installing the MCP Server
1. Clone this repository
2. Build the project:
dotnet build -c Release
3. Add the MCP server to your VSCode settings by modifying the MCP settings JSON file.
Add the following configuration to the mcpServers object in your configuration file:
{
"mcpServers": {
"azure-devops-pr": {
"autoApprove": [],
"disabled": false,
"timeout": 60,
"command": "dotnet",
"args": ["path/to/bin/Release/net8.0/AzureDevopsPullrequestMcpServer.dll"],
"env": {
// Optional: Only needed if using PAT authentication (not recommended)
// "AZURE_DEVOPS_PAT": "your-pat-token"
// If AZURE_DEVOPS_PAT is not set, DefaultAzureCredential will be used
},
"transportType": "stdio"
}
}
}
Replace:
- path/to with the actual path to your built DLL
- your-pat-token with your Azure DevOps Personal Access Token (only if using PAT authentication)
Note: If AZURE_DEVOPS_PAT is not provided in the configuration, the server will automatically use DefaultAzureCredential for authentication, which is the recommended approach.
Configuration options:
- timeout: Operation timeout in seconds (default: 60)
- transportType: Communication protocol (using "stdio")
- disabled: Whether the server is disabled
- autoApprove: List of operations that don't require explicit approval
The server will appear in the Connected MCP Servers section as:
azure-devops-pr (dotnet path/to/AzureDevopsPullrequestMcpServer.dll)
With the following available tools:
- GetPrDetails
- GetPrThreads
- CreatePrThread
Usage
The application supports two authentication methods:
1. Using Azure Identity (Recommended)
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.

