n8n-mcp-workflow-builder

Build, validate, and deploy n8n automation workflows via the n8n-MCP server.

7|2|Updated May 16, 2026
One-click install
npx skills add https://github.com/reason-machines/mcp-skills --skill n8n-mcp-workflow-builder-reason-machines
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: n8n-mcp-workflow-builder
Source: https://github.com/reason-machines/mcp-skills/tree/main/skills/n8n-mcp-workflow-builder
Command: npx skills add https://github.com/reason-machines/mcp-skills --skill n8n-mcp-workflow-builder-reason-machines

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires n8n-mcp.

What problem does it solve? Building n8n workflows manually requires deep knowledge of over 1,650 nodes, their properties, and connection rules, which leads to misconfigured nodes and failed deployments. This Skill gives AI assistants structured access to node documentation, 2,352 workflow templates, and validation tools so workflows are correct before deployment. ## Core Features & Use Cases - Template and Node Discovery: Search 2,352 curated workflow templates and 1,650 nodes (core and community) by task, keyword, metadata, or node type, with real configuration examples. - Validation and Auto-Fix: Validate individual node configurations and complete workflows with minimal or runtime profiles, validate n8n expressions, and apply suggested fixes automatically. - n8n Instance Integration: Create, update, test, and deploy workflows directly to a live n8n instance using batched partial-update operations. - Use Case: You need a webhook that posts Slack notifications. Search templates for webhook processing, pull the Slack node configuration with examples, validate it with runtime checks, then deploy and test the workflow on your n8n instance in one flow. ## Quick Start Ask the AI to build an n8n workflow that sends a Slack notification when a webhook receives a POST request, and have it validate and deploy the workflow to your n8n instance.

Frequently Asked Questions about n8n-mcp-workflow-builder

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build an n8n workflow with an AI assistant?▼

Install the n8n-mcp server via npx n8n-mcp and register it in your MCP client configuration. Then search templates first, discover nodes with examples, validate each node configuration, and deploy the workflow with n8n_create_workflow.

How to validate an n8n workflow before deployment?▼

Use validate_node with mode minimal to check required fields, then mode full with the runtime profile for comprehensive checks. Validate the complete workflow with validate_workflow and validate_workflow_expressions before calling n8n_create_workflow.

Does n8n-mcp work with Claude Desktop and Cursor?▼

Yes, n8n-mcp works with Claude Desktop, Claude Code, Cursor, Windsurf, and VS Code via Cline. Add the server to the client's MCP configuration with command npx and args -y n8n-mcp.

Can I deploy workflows directly to my n8n instance?▼

Yes, set N8N_API_URL and N8N_API_KEY environment variables to connect to your instance. Then use n8n_create_workflow, n8n_update_partial_workflow, n8n_validate_workflow, and n8n_test_workflow to manage deployments.

Why does my n8n node validation keep failing?▼

Validation usually fails because required fields are missing or default values were left unchanged. Run validate_node in minimal mode to list missing fields, then apply the suggestedFixes returned by full validation mode.

What are the limitations of the n8n-mcp cloud free tier?▼

The cloud free tier at dashboard.n8n-mcp.com allows 100 tool calls per day. For heavier usage, self-host the server via npx or Docker, which has no call limits but requires your own infrastructure.