ultimate_mcp_server vs N8N2MCP
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | N8N2MCP by Super-Chain | |
|---|---|---|
| Stars | ★ 149 | ★ 129 |
| 30d uses | — | — |
| Score | 85 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsProductivityAI / LLM Tools |
| Language | Python | HTML |
| Last commit | 2 mo ago | 9 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.
N8N2MCP · Summary
Convert N8N workflows into MCP servers for use in AI assistants like Claude and Cursor.
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
N8N2MCP · Use cases
- Transform CSV/Excel files using N8N's data manipulation nodes
- Connect AI assistants to external services like Slack, Google, etc.
- Send emails, Slack messages, or Discord notifications triggered by AI interactions
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_serverN8N2MCP · Install
Installation
Prerequisites
- Python 3.11+
- N8N Instance (cloud.n8n.io or self-hosted)
- Supabase Account
- Playwright
- Docker (optional)
Quick Start
Option 1: Docker Compose (Recommended)
- Clone the repository
git clone https://github.com/Super-Chain/N8N2MCP.git
cd N8N2MCP- Configure environment
cp env.example .env- Start with Docker Compose
docker-compose up -dOption 2: Manual Installation
- Install dependencies
pip install -r requirements.txt
playwright install- Configure environment
cp .env.example .env- Start both servers
python main.pyClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"n8n2mcp": {
"command": "python",
"args": ["mcp_router/mcp_router.py"],
"env": {
"SUPABASE_URL": "your-supabase-url",
"SUPABASE_KEY": "your-supabase-key",
"X_N8N_API_KEY": "your-n8n-api-key"
}
}
}
}