MCP Catalogs
Home

mcp-server-hub-server vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-hub-server
by bsmi021
ultimate_mcp_server
by Dicklesworthstone
Stars★ 3★ 149
30d uses
Score3085
Official
Categories
Developer ToolsProductivityAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit14 mo ago2 mo ago

mcp-server-hub-server · Summary

A gateway that centralizes multiple MCP servers, allowing clients to access all tools through a single endpoint.

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-server-hub-server · Use cases

  • Managing multiple MCP servers for different LLM clients like Cline and Cursor without duplication
  • Centralizing tool access for teams using various AI development environments
  • Dynamically updating MCP server configurations without restarting client applications

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-server-hub-server · Install

Installation

  1. Clone the repository
  2. Install dependencies: npm install
  3. Build the project: npm run build
  4. Configure mcp_hub_config.json in the project root
  5. Start the gateway server: npm start

Client Configuration

Add this entry to your LLM client's MCP settings:

{
  "mcpServers": {
    "gateway-client": {
      "command": "node",
      "args": [
        "/path/to/mcp-server-hub-server/dist/client/client.js"
      ],
      "options": {
        "cwd": "/path/to/mcp-server-hub-server"
      }
    }
  }
}

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.