About Review Code Tool
Review Code Tool is an MCP server published by wenkil in the AI category: a code review tool based on Model Context Protocol (MCP) that leverages OpenAI's capabilities for intelligent code analysis and review. | 基于模型上下文协议(MCP)的代码审查工具,利用OpenAI的能力进行智能代码分析和审查。. It has been installed 0 times through Conduid.
The repository has 13 stars and 2 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx mcp-review-code-toolThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Review Code Tool
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
mcp_review_code_tool 项目说明文档
欢迎Star~~
项目简介
mcp_review_code_tool 是一个基于 Model Context Protocol (MCP) 的server tool项目。 本项目主要用于实现代码评审等功能的服务集成。LLM使用的是OpenRouter的api。
开发调试记录: https://wenkil.github.io/2025/03/28/开发一个本地MCP工具进行代码review/
最新更新
🔥 新增Web版代码审查工具:代码逻辑改为了支持通过Web界面进行本地代码审查而非MCP调用,详情请查看 web_code_review/README.md,支持多文件上传、代码质量评估和可视化报告。
技术栈
- Node.js 18+
- TypeScript
- MCP SDK
快速开始
环境准备
- 确保已安装 Node.js 18+ 版本
- 推荐使用 nvm 进行 Node.js 版本管理
安装步骤
- 克隆项目
git clone [项目地址]
cd mcp_review_code_tool
- 安装依赖
npm install
- 构建项目
npm run build
构建输出
构建后的文件将输出到 dist 目录:
dist/mcp_code_review.js- 代码评审工具
配置说明
MCP 服务器配置
在 mcp.json 中进行配置:
{
"mcpServers": {
"代码评审工具": {
"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"
}
}
}
}
README mirrored from the source repository 3 months ago. The original is authoritative.