MCP Catalogs
Home

crawlbase-mcp vs ultimate_mcp_server

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

crawlbase-mcp
by crawlbase
ultimate_mcp_server
by Dicklesworthstone
Stars★ 55★ 149
30d uses
Score4585
Official
Categories
Web ScrapingAI / LLM ToolsDeveloper Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageJavaScriptPython
Last commit1 mo ago2 mo ago

crawlbase-mcp · Summary

Crawlbase MCP Server connects AI agents to live web data through structured scraping, JavaScript rendering, and anti-bot protection.

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.

crawlbase-mcp · Use cases

  • Market research by pulling live data from competitors, news, and reports
  • E-commerce monitoring to track products, reviews, and prices in real time
  • Autonomous AI agents with access to current web information

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

crawlbase-mcp · Install

Installation

Claude Desktop

  1. Open Claude Desktop → Settings → Developer → Edit Config
  2. Add to claude_desktop_config.json:
{
  "mcpServers": {
    "crawlbase": {
      "type": "stdio",
      "command": "npx",
      "args": ["@crawlbase/mcp@latest"],
      "env": {
        "CRAWLBASE_TOKEN": "your_token_here",
        "CRAWLBASE_JS_TOKEN": "your_js_token_here"
      }
    }
  }
}

HTTP Mode (for multi-user environments)

git clone https://github.com/crawlbase/crawlbase-mcp.git
cd crawlbase-mcp
npm install

# Start HTTP server
CRAWLBASE_TOKEN=your_token CRAWLBASE_JS_TOKEN=your_js_token npm run start:http

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.