n8n-workflow-builder
by makafeli·★ 519·Score 52
MCP server connecting AI assistants to n8n workflows for natural language automation management.
Overview
The n8n Workflow Builder MCP Server bridges AI assistants with n8n automation, enabling full workflow management through natural language commands. It provides comprehensive CRUD operations for workflows, execution management, and tag organization. The server supports both self-hosted and cloud n8n instances, with secure API key authentication. Built with TypeScript and using the latest MCP SDK, it's designed for high performance and easy integration with popular AI clients like Claude Desktop.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Teams already using n8n who want to leverage AI assistants for natural language workflow management and automation without UI interaction.
When NOT to choose this
You're not using n8n as your automation platform, or you need workflow management capabilities across multiple different automation tools simultaneously.
Tools this server exposes
12 tools extracted from the READMElist_workflowsList all workflows from your n8n instance
get_workflowRetrieve detailed information about a specific workflow
create_workflowCreate a new workflow with nodes and connections
execute_workflowManually execute a workflow
update_workflowUpdate an existing workflow's configuration
activate_workflowActivate a workflow to enable automatic execution
deactivate_workflowDeactivate a workflow to stop automatic execution
delete_workflowPermanently delete a workflow
create_workflow_and_activateCreate a new workflow and immediately activate it
list_executionsList workflow executions with filtering and pagination
get_executionGet detailed information about a specific execution
list_tagsList all workflow tags with pagination
Comparable tools
Installation
Installation & Usage
Method 1: Smithery.ai (Hosted - Recommended)
- Visit [smithery.ai](https://smithery.ai)
- Search: "n8n-workflow-builder"
- Connect with your n8n host and API key
Method 2: NPX (Local)
npx @makafeli/n8n-workflow-builderMethod 3: Manual Installation
git clone https://github.com/makafeli/n8n-workflow-builder.git
cd n8n-workflow-builder
npm install
npm run build
npm startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"n8n-workflow-builder": {
"command": "npx",
"args": ["@makafeli/n8n-workflow-builder"],
"env": {
"N8N_HOST": "http://localhost:5678",
"N8N_API_KEY": "your-api-key-here"
}
}
}
}FAQ
- What n8n version is compatible with this MCP server?
- The MCP server is compatible with n8n version 1.0 and above, as it uses n8n's official REST API which has been stable across recent versions.
- Can I use this with cloud-hosted n8n instances like n8n.cloud?
- Yes, simply set your N8N_HOST environment variable to your cloud instance URL, e.g., 'https://your-tenant.n8n.cloud' or 'https://api.n8n.cloud/api/v1'.
Compare n8n-workflow-builder with
Last updated · Auto-generated from public README + GitHub signals.