git-reviewer

git-reviewer

Enables AI assistants to fetch GitHub pull request diffs and metadata, and post review comments directly through the MCP protocol.

Category
Visit Server

README

๐Ÿค– Git-Reviewer MCP Server

License: MIT MCP Protocol

Stop manually copying and pasting massive code diffs into your AI chat window.

Git-Reviewer is a lightweight, secure Model Context Protocol (MCP) server that connects LLM assistants (like Claude Desktop, Cursor, and Windsurf) directly to the GitHub API. It enables your AI to fetch pull request metadata and raw diff files autonomously, producing fast, context-aware, and highly accurate code reviews directly within your development workspace.


โšก The Context Switching Problem (Solved)

flowchart LR
    DEV[Developer] -->|Ask for PR review| AI[AI Assistant]
    AI -->|MCP JSON-RPC| SERVER[Git-Reviewer MCP Server]

    SERVER --> META[fetch_pr_metadata]
    SERVER --> DIFF[fetch_pr_diff]

    META -->|Authorized API call| GITHUB[GitHub REST API]
    DIFF -->|Authorized API call| GITHUB

    GITHUB --> DATA[PR title, author, state, description, and raw diff]
    DATA --> SERVER
    SERVER -->|Structured review context| AI
    AI -->|Actionable review findings| DEV

    AI -. Optional: publish line comment .-> COMMENT[post_pr_review_comment]
    COMMENT -.-> GITHUB

Instead of manually navigating tabs, copying hundreds of lines of diff code, and hitting token limits, you can now simply type:

"Analyze the code changes in react/react PR #36818 and check for architectural issues."

Your assistant will query the server, read the raw diff, and deliver a structured code review instantly.


โœจ Features

  • ๐Ÿ’จ High-Fidelity Diffs (fetch_pr_diff): Fetches raw, line-by-line .diff code changes, optimized for LLM comprehension.
  • ๐Ÿ“‹ Rich Context (fetch_pr_metadata): Retrieves PR Title, Author, Description, and State to give the AI crucial background.
  • โœ๏ธ Active Review Comments (post_pr_review_comment): Allows the AI to write line-level feedback directly onto the PR from the chat interface. (Automatically resolves head commit SHA if omitted).
  • ๐Ÿ›ก๏ธ Secure Token Storage: Uses standard local .env configuration. Your GitHub Personal Access Token is never committed or shared.

๐Ÿš€ Installation & Local Setup

1. Clone & Initialize Environment

Set up a clean Python environment:

# Clone the repository
git clone https://github.com/Suchit-007/git-reviewer.git
cd git-reviewer

# Create and activate virtual environment
python -m venv .venv
# On Windows:
.venv\Scripts\activate
# On macOS/Linux:
source .venv/bin/activate

# Install required packages
pip install -r requirements.txt

2. Configure Environment Variables

Create a .env file in the root folder (or copy .env.example):

GITHUB_TOKEN=your_personal_access_token_here

Note: Using a token avoids GitHub API rate limiting on public repositories and enables reading from private repositories.


โš™๏ธ IDE Integration

Claude Desktop

Add the configuration to your claude_desktop_config.json file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "git-reviewer": {
      "command": "python",
      "args": [
        "C:\\absolute\\path\\to\\git-reviewer\\src\\server.py"
      ],
      "env": {
        "GITHUB_TOKEN": "your_github_token_here"
      }
    }
  }
}

Cursor

  1. Go to Settings -> Features -> MCP.
  2. Click + Add New MCP Server.
  3. Configure:
    • Name: git-reviewer
    • Type: command
    • Command: python C:\absolute\path\to\git-reviewer\src\server.py
  4. Click Save.

๐Ÿงช Development & Testing

You can test the server locally using the MCP Inspector tool:

# Activate virtual environment
.venv\Scripts\activate

# Run the inspector
fastmcp dev inspector src/server.py

This opens a local developer interface at http://localhost:6274 to test the tools interactively.


๐Ÿ“„ License

This project is open-source and licensed under the MIT License.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured