ultimate_mcp_server vs mcp_review_code_tool
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mcp_review_code_tool by wenkil | |
|---|---|---|
| Stars | ★ 149 | ★ 13 |
| 30d uses | — | — |
| Score | 85 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsProductivity |
| Language | Python | HTML |
| Last commit | 2 mo ago | 13 mo ago |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
mcp_review_code_tool · Summary
MCP server for code review using OpenAI API to analyze and review code files.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servermcp_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"
}
}
}
}