Replies: 1 comment
-
|
Yes, add n8n-mcp to your existing docker-compose.yml: services:
n8n-mcp:
image: ghcr.io/czlonkowski/n8n-mcp:latest
container_name: n8n-mcp
restart: unless-stopped
ports:
- "3000:3000"
environment:
- N8N_MODE=true
- MCP_MODE=http
- N8N_API_URL=http://n8n:5678 # Your n8n container name
- N8N_API_KEY=${N8N_API_KEY}
- MCP_AUTH_TOKEN=${MCP_AUTH_TOKEN}
- AUTH_TOKEN=${MCP_AUTH_TOKEN}
networks:
- your-n8n-network # Same network as n8nGenerate auth token: Connect via MCP Client Tool node with URL |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I've already got my n8n running in a docker container and have quite a few workflows.
How is it possible to add these features to my existing installation?
Beta Was this translation helpful? Give feedback.
All reactions