MCP Catalogs
Home

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
Score4185
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit10 mo ago2 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 build

Add 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

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.