MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

N
N8n Community Nodes MCP

n8n community nodes MCP

Created 1/30/2026
Updated 4 days ago
Repository documentation and setup instructions

n8n Community MCP Server

A public MCP endpoint for the n8n community nodes catalog.

  • Website: https://n8n-community-mcp.masmoudi.dev
  • MCP endpoint: https://n8n-community-mcp.masmoudi.dev/mcp

Quick setup

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "n8n-community": {
      "command": "npx",
      "args": [
        "mcp-remote@latest",
        "--http",
        "https://n8n-community-mcp.masmoudi.dev/mcp",
        "--allow-http"
      ]
    }
  }
}

Claude Code

claude mcp add --transport http n8n-community https://n8n-community-mcp.masmoudi.dev/mcp

Cursor

Add to your mcp.json:

{
  "mcpServers": {
    "n8n-community": {
      "url": "https://n8n-community-mcp.masmoudi.dev/mcp"
    }
  }
}

Codex

Add to your ~/.codex/config.toml:

[mcp_servers.n8n-community]
url = "https://n8n-community-mcp.masmoudi.dev/mcp"

OpenCode

Add to your ~/.config/opencode/opencode.json:

{
  "mcp": {
    "n8n-community": {
      "type": "remote",
      "url": "https://n8n-community-mcp.masmoudi.dev/mcp"
    }
  }
}

Antigravity

Add to your ~/.gemini/antigravity/mcp_config.json:

{
  "mcpServers": {
    "n8n-community": {
      "serverUrl": "https://n8n-community-mcp.masmoudi.dev/mcp"
    }
  }
}
Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/dalisys/n8n-community-nodes-mcp
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "dalisys-n8n-community-nodes-mcp": { "command": "git", "args": [ "clone", "https://github.com/dalisys/n8n-community-nodes-mcp" ] } } }