m

mcp

@ZyrticX/mcp
0 Stars 3 次浏览 ZyrticX 更新于 2026-08-23

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "n8n-team": {
      "transport": "sse",
      "url": "http://YOUR_DROPLET_IP:3000"
    }
  }
}

服务介绍

N8N MCP Server

MCP n8n -Claude Desktop.

Deploy -DigitalOcean

1. Droplet

  • -DigitalOcean
  • Create Droplets
  • : Ubuntu 22.04 LTS
  • : Basic $4/
  • Create Droplet

2. Docker

ssh root@YOUR_DROPLET_IP

apt update && apt upgrade -y
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh

3. Clone

git clone https://github.com/ZyrticX/mcp.git
cd mcp

4. Environment

cp .env.example .env
nano .env

( ):

N8N_API_URL=https://n8n.grow-agency.io
N8N_API_KEY=your_actual_key_here

5.

docker compose up -d

6. Firewall

ufw allow 3000/tcp
ufw allow 80/tcp
ufw allow 443/tcp
ufw allow OpenSSH
ufw enable

7.

curl http://localhost:3000
docker compose logs -f

-Claude Desktop

(Windows):

%APPDATA%\Claude\claude_desktop_config.json

(Mac):

~/Library/Application Support/Claude/claude_desktop_config.json

:

{
  "mcpServers": {
    "n8n-team": {
      "url": "http://YOUR_DROPLET_IP:3000",
      "transport": "sse"
    }
  }
}

Claude Desktop - !

()

Caddyfile:

n8n-mcp.yourdomain.com {
    reverse_proxy n8n-mcp:3000
}

:

docker compose restart caddy

docker compose logs -f

docker compose restart

docker compose down

docker compose up -d --build

Dashboard

:

http://YOUR_DROPLET_IP:3000
!

? :

  • docker compose logs -f n8n-mcp
  • docker ps
  • ufw status

Made with for the team

相关 MCP 服务