πͺ MCP server for programmatic creation and management of n8n workflows. Enables AI assistants to build, modify, and manage workflows without direct user intervention through a comprehensive set of tools and resources for interacting with n8n's REST API.
Config is the same across clients β only the file and path differ.
{
"mcpServers": {
"n8n-workflow-builder": {
"args": [
"bash",
"-c",
"N8N_HOST=http://localhost:5678/api/v1 N8N_API_KEY=your-n8n-api-key OUTPUT_VERBOSITY=concise npx -y mcp-n8n-builder"
],
"command": "wsl.exe"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for programmatic creation and management of n8n workflows. This server provides tools and resources for interacting with n8n's REST API, allowing AI assistants to build, modify, and manage workflows without direct user intervention.
Run this in your terminal to verify the server starts. Then let us know if it worked β your result helps other developers.
npx -y 'mcp-n8n-builder' 2>&1 | head -1 && echo "β Server started successfully"
After testing, let us know if it worked:
Five weighted categories β click any category to see the underlying evidence.
No known CVEs.
Checked mcp-n8n-builder against OSV.dev.
Click any tool to inspect its schema.
n8n://workflowsList of all workflows in n8n
n8n://workflows
n8n://workflows/{id}Details of a specific n8n workflow
n8n://workflows/{id}
n8n://executions/{id}Details of a specific n8n workflow execution
n8n://executions/{id}
Be the first to review
Have you used this server?
Share your experience β it helps other developers decide.
Sign in to write a review.
Others in productivity / developer-tools
Persistent memory using a knowledge graph
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects β databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for Mcp N8n Builder 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 for programmatic creation and management of n8n workflows. This server provides tools and resources for interacting with n8n's REST API, allowing AI assistants to build, modify, and manage workflows without direct user intervention.
This tool is a "token monster" due to the nature of n8n workflows:
The tool implements several optimizations to reduce token usage:
OUTPUT_VERBOSITY=concise (default) for summaries instead of full JSONverbosity parameterconcise verbosity unless you specifically need full JSONThis server requires configuration through your MCP client. Here are examples for different environments:
Add this to your Cline MCP settings:
{
"mcpServers": {
"n8n-workflow-builder": {
"command": "npx",
"args": ["-y", "mcp-n8n-builder"],
"env": {
"N8N_HOST": "http://localhost:5678/api/v1",
"N8N_API_KEY": "your-n8n-api-key",
"OUTPUT_VERBOSITY": "concise" // Options: 'concise' or 'full'
}
}
}
}
For WSL environments, add this to your Claude Desktop configuration:
{
"mcpServers": {
"n8n-workflow-builder": {
"command": "wsl.exe",
"args": [
"bash",
"-c",
"N8N_HOST=http://localhost:5678/api/v1 N8N_API_KEY=your-n8n-api-key OUTPUT_VERBOSITY=concise npx -y mcp-n8n-builder"
]
}
}
}
The server can be configured using environment variables:
| Variable | Description | Default |
|---|---|---|
N8N_HOST | URL of the n8n API | http://localhost:5678/api/v1 |
N8N_API_KEY | API key for n8n authentication | "" |
SERVER_NAME | Name of the MCP server | "n8n-workflow-builder" |