mentor-mcp-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mentor-mcp-server by cyanheads | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 31 | ★ 149 |
| 30d uses | — | — |
| Score | 41 | 85 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 10 mo ago | 2 mo ago |
mentor-mcp-server · Summary
MCP server providing LLM agents with expert mentorship for code review, design critique, and writing feedback.
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.
mentor-mcp-server · Use cases
- Developers seeking AI-powered code reviews with security and performance insights
- Product designers getting feedback on UI/UX designs and architecture decisions
- Technical writers improving documentation clarity and structure
- Product teams brainstorming feature enhancements and evaluating implementation approaches
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
mentor-mcp-server · Install
# Clone the repository
git clone git@github.com/cyanheads/mentor-mcp-server.git
cd mentor-mcp-server
# Install dependencies
npm install
# Build the project
npm run buildAdd to your MCP client settings:
{
"mcpServers": {
"mentor": {
"command": "node",
"args": ["build/index.js"],
"env": {
"DEEPSEEK_API_KEY": "your_api_key",
"DEEPSEEK_MODEL": "deepseek-reasoner",
"DEEPSEEK_MAX_TOKENS": "8192",
"DEEPSEEK_MAX_RETRIES": "3",
"DEEPSEEK_TIMEOUT": "30000"
}
}
}
}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_server