A MCP server for code reviews
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-code-review-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A custom MCP server that performs code reviews using Repomix and LLMs.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for Mcp Code Review Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A custom MCP server that performs code reviews using Repomix and LLMs.
# Clone the repository
git clone https://github.com/yourusername/code-review-server.git
cd code-review-server
# Install dependencies
npm install
# Build the server
npm run build
Create a .env file in the root directory based on the .env.example template:
cp .env.example .env
Edit the .env file to set up your preferred LLM provider and API key:
# LLM Provider Configuration
LLM_PROVIDER=OPEN_AI
OPENAI_API_KEY=your_openai_api_key_here
The code review server implements the Model Context Protocol (MCP) and can be used with any MCP client:
# Start the server
node build/index.js
The server exposes two main tools:
analyze_repo: Flattens a codebase using Repomixcode_review: Performs a code review using an LLMThis server provides two distinct tools for different code analysis needs:
Use this tool when you need to:
Example situations:
Use this tool when you need to:
Example situations:
When to use parameters:
specificFiles: When you only want to review certain files, not the entire repositoryfileTypes: When you want to focus on specific file extensions (e.g., .js, .ts)detailLevel: Use 'basic' for a quick overview or 'detailed' for in-depth analysisfocusAreas: When you want to prioritize certain aspects (security, performance, etc.)For testing purposes, you can use the included CLI tool:
node build/cli.js <repo_path> [options]
Options:
--files <file1,file2>: Specific files to review--types <.js,.ts>: File types to include in the review--detail <basic|detailed>: Level of detail (default: detailed)--focus <areas>: Areas to focus on (security,performance,quality,maintainability)Example:
node build/cli.js ./my-project --types .js,.ts --detail detailed --focus security,quality
# Run tests
npm test
# Watch mode for development
npm run watch
# Run the MCP inspector tool
npm run inspector
The code review server integrates directly with multiple LLM provider APIs:
Configure your preferred LLM provider in the .env file:
# Set which provider to use
LLM_PROVIDER=OPEN_AI # Options: OPEN_AI, AN
... [View full README on GitHub](https://github.com/crazyrabbitLTC/mcp-code-review-server#readme)