n8n-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
n8n-mcp by czlonkowski | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 20,992 | ★ 149 |
| 30d uses | — | — |
| Score | 63 | 85 |
| Official | — | — |
| Categories | Developer ToolsProductivityAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
n8n-mcp · Summary
A comprehensive MCP server providing access to 1,650 n8n workflow nodes and 2,352 templates for AI assistants.
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-mcp · Use cases
- AI-assisted n8n workflow creation and automation
- Template-based workflow development with AI guidance
- Integration of n8n nodes with Claude Code, Cursor, and other AI-powered tools
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-mcp · Install
Installation
**Quick start** - No installation required:
- Use the hosted dashboard at [dashboard.n8n-mcp.com](https://dashboard.n8n-mcp.com)
- Free tier: 100 tool calls/day
**Self-hosting options**:
- **npx**:
npx n8n-mcp - **Docker**:
docker run ghcr.io/czlonkowski/n8n-mcp - **Railway**: Deploy with the [Railway button](https://railway.com/deploy/n8n-mcp?referralCode=n8n-mcp)
- **Local**: See [Self-Hosting Guide](./docs/SELF_HOSTING.md)
**Claude Desktop Configuration**: Add to claude_desktop_config.json:
{
"mcpServers": {
"n8n": {
"command": "npx",
"args": ["n8n-mcp"]
}
}
}**n8n Integration**: See [n8n Deployment Guide](./docs/N8N_DEPLOYMENT.md) for connecting to your n8n instance.
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_server