MCP server that provides tools and resources for interacting with n8n API
{
"mcpServers": {
"n8n-mcp-server": {
"args": [
"-y",
"@leonardsellem/n8n-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server that provides tools and resources for interacting with n8n API
Is it safe?
No known CVEs for @leonardsellem/n8n-mcp-server.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 273 days ago. 1,599 stars. 811 weekly downloads.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Context cost
4 tools. ~200 tokens (0.1% of 200K).
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@leonardsellem/n8n-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
workflow_listList all workflows
workflow_getGet details of a specific workflow
workflow_createCreate a new workflow
run_webhookExecute a workflow through n8n webhooks by workflow name
This server is missing a description.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for N8n Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that allows AI assistants to interact with n8n workflows through natural language.
This project provides a Model Context Protocol (MCP) server that empowers AI assistants to seamlessly interact with n8n, a popular workflow automation tool. It acts as a bridge, enabling AI assistants to programmatically manage and control n8n workflows and executions using natural language commands.
npm install -g @leonardsellem/n8n-mcp-server
# Clone the repository
git clone https://github.com/leonardsellem/n8n-mcp-server.git
cd n8n-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
# Optional: Install globally
npm install -g .
You can also run the server using Docker:
# Pull the image
docker pull leonardsellem/n8n-mcp-server
# Run the container with your n8n API configuration
docker run -e N8N_API_URL=http://your-n8n:5678/api/v1 \
-e N8N_API_KEY=your_n8n_api_key \
-e N8N_WEBHOOK_USERNAME=username \
-e N8N_WEBHOOK_PASSWORD=password \
leonardsellem/n8n-mcp-server
How you update the server depends on how you initially installed it.
If you installed the server using npm install -g @leonardsellem/n8n-mcp-server:
npm install -g @leonardsellem/n8n-mcp-server@latest
If you cloned the repository and installed from source:
cd path/to/n8n-mcp-server
git stash
You can apply them later with git stash pop.main branch):
git pull origin main
If you are on a different branch, replace main with your branch name.npm install
npm run build
npm install -g ., you might want to run this command again to update the global link:
npm install -g .
node build/index.js in your AI assistant's MCP configuration, ensure the path is still correct. Using npm install -g . and then n8n-mcp-server as the command should keep this consistent.If you are running the server using Docker:
docker pull leonardsellem/n8n-mcp-server:latest
docker ps):
docker stop <your_container_name_or_id>
docker rm <your_container_name_or_id>
docker run command you used previously, including all your necessary environment variables (refer to the "Docker Installation" section for an example command). For instance:
docker run -e N8N_API_URL=http://your-n8n:5678/api/v1 \
-e N8N_API_KEY=your_n8n_api