Content
# mcp_review_code_tool Project Documentation
## Welcome Star~~
## Project Overview
mcp_review_code_tool is a server tool project based on the Model Context Protocol (MCP).
This project is primarily used to implement service integration for code review and other functions. The LLM used is OpenRouter's API.
Development and debugging records:
https://wenkil.github.io/2025/03/28/开发一个本地MCP工具进行代码review/
## Latest Updates
🔥 **New Web-based Code Review Tool**: The code logic has been modified to support local code review through a web interface instead of MCP calls. For details, please see [web_code_review/README.md](web_code_review/README.md), which supports multi-file upload, code quality evaluation, and visual reports.
## Technical Stack
- Node.js 18+
- TypeScript
- MCP SDK
## Quick Start
### Environment Preparation
1. Ensure Node.js 18+ is installed
2. It is recommended to use nvm for Node.js version management
### Installation Steps
1. Clone the project
```bash
git clone [project address]
cd mcp_review_code_tool
```
2. Install dependencies
```bash
npm install
```
3. Build the project
```bash
npm run build
```
### Build Output
The built files will be output to the `dist` directory:
- `dist/mcp_code_review.js` - Code review tool
## Configuration Instructions
### MCP Server Configuration
Configure in `mcp.json`:
```json
{
"mcpServers": {
"Code Review Tool": {
"command": "node",
"args": ["your path/dist/mcp_code_review.js"],
"cwd": "your path",
"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"
}
}
}
}
```
Connection Info
You Might Also Like
everything-claude-code
Complete Claude Code configuration collection - agents, skills, hooks,...
markitdown
MarkItDown-MCP is a lightweight server for converting URIs to Markdown.
firecrawl
Firecrawl MCP Server enables web scraping, crawling, and content extraction.
cc-switch
All-in-One Assistant for Claude Code, Codex & Gemini CLI across platforms.
servers
Model Context Protocol Servers
servers
Model Context Protocol Servers