code-review-mcp
Enables comprehensive code reviews using multiple AI models (O3, Gemini, Claude Opus) and consolidates results with GPT-4, focusing on bugs, security, performance, and best practices.
README
Code Review MCP Server
A Model Context Protocol (MCP) server that performs comprehensive code reviews using multiple AI models (O3, Gemini, Claude Opus) and consolidates the results with GPT-4.
Features
- Multi-Model Analysis: Leverages O3, Google Gemini, and Claude Opus for diverse perspectives
- Consolidated Reviews: Uses GPT-4 to merge and organize feedback from all models
- Comprehensive Feedback: Focuses on bugs, security, performance, and best practices
- MCP Integration: Works seamlessly with Claude Code and other MCP-compatible clients
Installation
- Clone the repository:
git clone <repository-url>
cd code_review_mcp
- Install dependencies:
pip install -r requirements.txt
- Install in development mode:
pip install -e .
API Keys Required
You'll need API keys from:
- OpenAI: For O3-mini (reviews) and GPT-4o (consolidation)
- Google: For Gemini 2.5 Pro
- Anthropic: For Claude 3 Opus Latest
- Hugging Face: For Qwen2.5-Coder model
Configuration
Choose one of these two methods to provide your API keys:
Method 1: Environment File (Recommended)
- Set up API keys:
cp .env.template .env
# Edit .env and add your API keys
- Add to your Claude Code MCP settings:
{
"mcpServers": {
"code-review": {
"command": "python",
"args": ["-m", "code_review_mcp.server"]
}
}
}
Method 2: MCP Settings
Add API keys directly to your Claude Code MCP settings:
{
"mcpServers": {
"code-review": {
"command": "python",
"args": ["-m", "code_review_mcp.server"],
"env": {
"OPENAI_API_KEY": "your-openai-key",
"GOOGLE_API_KEY": "your-google-key",
"ANTHROPIC_API_KEY": "your-anthropic-key",
"HUGGINGFACE_API_KEY": "your-huggingface-key"
}
}
}
}
Usage
The server provides one tool:
multi_model_code_review
Performs comprehensive code review using multiple AI models.
Parameters:
code(required): The source code to reviewdescription(required): Author's description of the code's purposelanguage(optional): Programming language (default: auto-detect)
Example usage in Claude:
Please review this Python function using the multi_model_code_review tool:
Code:
def calculate_average(numbers):
total = 0
for num in numbers:
total += num
return total / len(numbers)
Description: This function calculates the average of a list of numbers.
Performance Note
This tool can be slow (30-60 seconds) due to:
- Multiple API calls to different models
- High reasoning effort for O3 model
- Consolidation step with GPT-4
API Requirements
- OpenAI API key (for O3 and GPT-4)
- Google API key (for Gemini)
- Anthropic API key (for Claude Opus)
Error Handling
The server includes robust error handling:
- Individual model failures won't break the entire review
- Timeout protection (3 minutes total)
- Fallback consolidation if GPT-4 fails
- Clear error messages for missing API keys
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.