MCP Catalogs
Home

ultimate_mcp_server vs polymarket-mcp

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

ultimate_mcp_server
by Dicklesworthstone
polymarket-mcp
by pab1it0
Stars★ 149★ 6
30d uses
Score8540
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
FinanceAI / LLM ToolsDeveloper Tools
LanguagePythonPython
Last commit2 mo ago2 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.

polymarket-mcp · Summary

MCP server providing access to Polymarket's prediction markets data through standardized interfaces.

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

polymarket-mcp · Use cases

  • AI assistants providing market analysis and insights on prediction markets
  • Automated trading systems that react to Polymarket data changes
  • Research tools that aggregate and analyze prediction market trends

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

polymarket-mcp · Install

Docker Installation

  1. Build the Docker image:
docker build -t polymarket-mcp-server .
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "polymarket": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "-e", "GAMMA_API_URL",
        "-e", "GAMMA_REQUIRES_AUTH",
        "polymarket-mcp-server"
      ],
      "env": {
        "GAMMA_API_URL": "https://gamma-api.polymarket.com",
        "GAMMA_REQUIRES_AUTH": "false"
      }
    }
  }
}

UV Installation (Alternative)

  1. Set up environment:
cp .env.template .env
# Edit .env with your configuration
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "polymarket": {
      "command": "/usr/local/bin/uv",
      "args": [
        "run",
        "-m", "polymarket_mcp_server.main"
      ],
      "cwd": "<full path to polymarket-mcp directory>",
      "env": {
        "GAMMA_API_URL": "https://gamma-api.polymarket.com",
        "GAMMA_REQUIRES_AUTH": "false"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.