MCP Catalogs
Home

everything vs N8N2MCP

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
N8N2MCP
by Super-Chain
Stars★ 85,748★ 129
30d uses
Score7745
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsProductivityAI / LLM Tools
LanguageTypeScriptHTML
Last committhis month9 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

N8N2MCP · Summary

Convert N8N workflows into MCP servers for use in AI assistants like Claude and Cursor.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

N8N2MCP · 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)
  1. Clone the repository
git clone https://github.com/Super-Chain/N8N2MCP.git
cd N8N2MCP
  1. Configure environment
cp env.example .env
  1. Start with Docker Compose
docker-compose up -d
Option 2: Manual Installation
  1. Install dependencies
pip install -r requirements.txt
playwright install
  1. Configure environment
cp .env.example .env
  1. Start both servers
python main.py

Claude 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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.