ultimate_mcp_server vs n8n-claw
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | n8n-claw by freddy-schuetz | |
|---|---|---|
| Stars | ★ 149 | ★ 436 |
| 30d uses | — | — |
| Score | 85 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsProductivityDeveloper Tools |
| Language | Python | Shell |
| Last commit | 2 mo ago | this month |
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.
n8n-claw · Summary
Self-hosted AI agent using n8n with MCP Skills library, memory management, and expert agents.
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
n8n-claw · Use cases
- Personal assistant for task management and reminders
- Team collaboration agent with knowledge tracking
- Developer tool for building custom API integrations
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_servern8n-claw · Install
Installation
Prerequisites
- Linux VPS (Ubuntu 22.04/24.04 recommended, 4GB RAM and 15GB Disk minimum)
- Telegram Bot Token (from [@BotFather](https://t.me/BotFather))
- Your Telegram Chat ID (from [@userinfobot](https://t.me/userinfobot))
- LLM API Key (Anthropic, OpenAI, OpenRouter, DeepSeek, Gemini, Mistral, Ollama, or OpenAI-compatible)
- Domain name (or use [sslip.io](https://sslip.io))
Setup Steps
git clone https://github.com/freddy-schuetz/n8n-claw.git && cd n8n-claw && ./setup.shThe script will prompt for:
- n8n API Key (generated in n8n UI: Settings → API)
- Telegram Bot Token and Chat ID
- LLM API Key (choose your provider)
- Domain name
- Agent personality (name, language, communication style)
Optional features:
- Embeddings for semantic memory search
- Voice messages (requires Whisper API key)
Claude Desktop Integration
{
"mcpServers": {
"n8n-claw": {
"command": "docker",
"args": ["run", "--rm", "-i", "n8n-claw-agent", "mcp"],
"env": {
"TELEGRAM_BOT_TOKEN": "your-telegram-token",
"TELEGRAM_CHAT_ID": "your-chat-id",
"LLM_API_KEY": "your-llm-key",
"DOMAIN": "your-domain"
}
}
}
}After setup, send a message to your Telegram bot to start interacting.