everything vs mcp_review_code_tool
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mcp_review_code_tool by wenkil | |
|---|---|---|
| Stars | ★ 85,748 | ★ 13 |
| 30天用量 | — | — |
| 综合分 | 77 | 33 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | HTML |
| 最近提交 | 本月 | 13 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp_review_code_tool · 概述
基于OpenAI API的MCP代码审查服务器,可分析并审查代码文件。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp_review_code_tool · 使用场景
- 自动化开发工作流中的代码审查
- 通过MCP将AI驱动的代码分析集成到IDE中
- 生成详细的代码质量报告和建议
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp_review_code_tool · 安装
安装步骤
- 克隆仓库:
git clone [仓库地址]
cd mcp_review_code_tool- 安装依赖:
npm install- 构建项目:
npm run build- 在MCP配置中配置服务器(例如Claude Desktop):
{
"mcpServers": {
"code-review": {
"command": "node",
"args": ["/path/to/dist/mcp_code_review.js"],
"env": {
"OPENAI_API_KEY": "您的API密钥",
"OPENAI_API_BASE": "https://openrouter.ai/api/v1",
"OPENAI_API_MODEL": "qwen/qwen-2.5-coder-32b-instruct:free"
}
}
}
}