mcp_review_code_tool
by wenkil·★ 13·Score 33
MCP server for code review using OpenAI API to analyze and review code files.
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:
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
Installation
Installation Steps
- Clone the repository:
git clone [repository url]
cd mcp_review_code_tool- Install dependencies:
npm install- Build the project:
npm run build- 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
Last updated · Auto-generated from public README + GitHub signals.