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 | — | — |
| Score | 45 | 85 |
| Official | — | — |
| Categories | Web ScrapingAI / LLM ToolsDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | JavaScript | Python |
| Last commit | 1 mo ago | 2 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
- Open Claude Desktop → Settings → Developer → Edit Config
- 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:httpultimate_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