MCP Catalogs
Home

mcp_review_code_tool

by wenkil·13·Score 33

MCP server for code review using OpenAI API to analyze and review code files.

developer-toolsai-llmproductivity
2
Forks
1
Open issues
13 mo ago
Last commit
2d ago
Indexed

Overview

The mcp_review_code_tool is an MCP server that provides code review capabilities using OpenAI's models through the OpenRouter API. It integrates with the Model Context Protocol to offer automated code analysis, helping developers identify potential issues and improve code quality. The project supports both MCP integration and a standalone web interface for code review functionality.

Try asking AI

After installing, here are 3 things you can ask your AI assistant:

you:Automating code review processes in development workflows
you:Integrating AI-powered code analysis into IDEs via MCP
you:Generating detailed code quality reports and suggestions

When to choose this

Choose this if you need a simple web interface for code review and basic MCP integration without complex setup.

When NOT to choose this

Don't choose this if you need a robust MCP server with multiple tools or extensive code analysis capabilities.

Comparable tools

mcp-code-reviewgithub-code-review-mcpgit-mcp

Installation

Installation Steps

  1. Clone the repository:
git clone [repository url]
cd mcp_review_code_tool
  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Configure MCP server in your MCP configuration (e.g., Claude Desktop):
{
  "mcpServers": {
    "code-review": {
      "command": "node",
      "args": ["/path/to/dist/mcp_code_review.js"],
      "env": {
        "OPENAI_API_KEY": "your-api-key",
        "OPENAI_API_BASE": "https://openrouter.ai/api/v1",
        "OPENAI_API_MODEL": "qwen/qwen-2.5-coder-32b-instruct:free"
      }
    }
  }
}

Compare mcp_review_code_tool with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.