MCP ExplorerExplorer

Azure Devops Pullrequest Mcp Server

@oshvartzon a year ago
1 MIT
FreeCommunity
AI Systems
mcp server for ADO pull requests

Overview

What is Azure Devops Pullrequest Mcp Server

The azure-devops-pullrequest-mcp-server is an MCP server implementation designed for interacting with Azure DevOps pull requests. It provides tools for accessing and manipulating pull request data using the Model Context Protocol.

Use cases

Use cases for the azure-devops-pullrequest-mcp-server include conducting pull request reviews, managing code review discussions, and providing feedback on code changes through comment threads.

How to use

To use the azure-devops-pullrequest-mcp-server, you can follow the provided usage examples, such as performing a pull request review or creating new comment threads on specific code locations. The server utilizes prompts and tools to facilitate these interactions.

Key features

Key features include retrieving pull request details, fetching pull request threads and comments, and creating new comment threads at specific code locations. Future enhancements will include better thread management and the ability to respond to existing threads.

Where to use

This MCP server is primarily used in software development environments where Azure DevOps is utilized for version control and collaboration on code changes, particularly in pull request workflows.

Content

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 capabilities

Usage 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
  1. 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:

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)
# DefaultAzureCredential will be used automatically if PAT is not provided
dotnet run -- --pr-url <azure-devops-pr-url>
  1. Using Personal Access Token (Legacy)
# Not recommended for security reasons
dotnet run -- --pat <your-pat-token> --pr-url <azure-devops-pr-url>

Example:

# Using Azure Identity (Recommended)
dotnet run -- --pr-url https://dev.azure.com/org/project/_git/repo/pullrequest/123

# Using PAT (Not Recommended)
dotnet run -- --pat abc123... --pr-url https://dev.azure.com/org/project/_git/repo/pullrequest/123

Available Tools

GetPrDetails

Retrieves details about a specific pull request.

Input Schema:

GetPrThreads

Fetches comment threads from a pull request.

Input Schema:

CreatePrThread

Creates a new comment thread at a specific location in code.

Input Schema:

Development

Built with:

  • C#/.NET
  • ModelContextProtocol NuGet package
  • Azure DevOps REST APIs

Project Structure

  • src/Models/ - Data models for pull requests and threads
    • PullRequestDetails.cs - PR data structure
    • PullRequestThread.cs - Thread and comment models
    • AdoCreateThreadInput.cs - Thread creation input model
  • src/Services/
    • AdoPullRequestTool.cs - Core API communication service
  • src/Utils/
    • IUrlParser.cs - URL processing utilities

Contributing

This is a learning project demonstrating MCP server implementation. Feel free to use it as a reference for building your own MCP servers or extending its functionality.

License

MIT License

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers