Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

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.md

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

  1. Clone the repository:
git clone <repository-url>
cd code_review_mcp
  1. Install dependencies:
pip install -r requirements.txt
  1. 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)

  1. Set up API keys:
cp .env.template .env
# Edit .env and add your API keys
  1. 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: ``json { "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 review
  • description (required): Author's description of the code's purpose
  • language (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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.