ultimate_mcp_server vs MySearch-Proxy
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | MySearch-Proxy by skernelx | |
|---|---|---|
| Stars | ★ 149 | ★ 120 |
| 30d uses | — | — |
| Score | 85 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | SearchAI / LLM ToolsDeveloper Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 2 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.
MySearch-Proxy · Summary
Unified search MCP server that proxies requests to Tavily, Firecrawl, Exa and Social with a central management layer.
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
MySearch-Proxy · Use cases
- Local AI assistant with unified search capabilities
- OpenClaw search skill deployment
- Team-based shared search backend with token management
ultimate_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_serverMySearch-Proxy · Install
Installation
Option 1: Direct MCP Installation
cd /path/to/MySearch-Proxy
python3 -m venv venv
source venv/bin/activate
# Configure environment variables
echo 'MYSEARCH_PROXY_BASE_URL=https://your-mysearch-proxy.example.com' >> .env
echo 'MYSEARCH_PROXY_API_KEY=mysp-...' >> .env
./install.shOption 2: Deploy Proxy First
mkdir -p mysearch-proxy-data
docker run -d \
--name mysearch-proxy \
--restart unless-stopped \
-p 9874:9874 \
-e ADMIN_PASSWORD=change-me \
-v $(pwd)/mysearch-proxy-data:/app/data \
skernelx/mysearch-proxy:latestClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mysearch": {
"command": "python",
"args": ["-m", "mysearch.mcp_server"],
"env": {
"MYSEARCH_PROXY_BASE_URL": "https://your-mysearch-proxy.example.com",
"MYSEARCH_PROXY_API_KEY": "mysp-..."
}
}
}
}