everything vs mcp_review_code_tool
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp_review_code_tool by wenkil | |
|---|---|---|
| Stars | ★ 85,748 | ★ 13 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | HTML |
| Last commit | this month | 13 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp_review_code_tool · Summary
MCP server for code review using OpenAI API to analyze and review code files.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp_review_code_tool · Use cases
- Automating code review processes in development workflows
- Integrating AI-powered code analysis into IDEs via MCP
- Generating detailed code quality reports and suggestions
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp_review_code_tool · Install
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"
}
}
}
}