git-reviewer
Provides tools for fetching pull request diffs, metadata, and posting review comments on GitHub PRs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@git-reviewerreview the code changes in PR #42 in your-username/your-repo"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐ค Git-Reviewer MCP Server
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)
graph TD
A[Claude Desktop / Cursor] -->|MCP JSON-RPC| B[Git-Reviewer MCP Server]
B -->|Authorized Request| C[GitHub REST API]
C -->|Raw Diff & Metadata| B
B -->|Parsed Code Review Context| AInstead 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.
Related MCP server: GitLab Review MCP
โจ Features
๐จ High-Fidelity Diffs (
fetch_pr_diff): Fetches raw, line-by-line.diffcode 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
.envconfiguration. 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.txt2. Configure Environment Variables
Create a .env file in the root folder (or copy .env.example):
GITHUB_TOKEN=your_personal_access_token_hereNote: 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.jsonmacOS:
~/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
Go to Settings -> Features -> MCP.
Click + Add New MCP Server.
Configure:
Name:
git-reviewerType:
commandCommand:
python C:\absolute\path\to\git-reviewer\src\server.py
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.pyThis 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Suchit-007/git-reviewer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server