Documentation Index
Fetch the complete documentation index at: https://mintlify.com/czlonkowski/n8n-skills/llms.txt
Use this file to discover all available pages before exploring further.
What is n8n-skills?
n8n-skills is a collection of 7 complementary Claude Code skills that give AI assistants expert knowledge for building n8n workflows. Each skill covers a specific domain — expression syntax, MCP tool usage, workflow architecture, validation, node configuration, and code writing in JavaScript and Python. Skills activate automatically when your query matches their domain. You don’t invoke them manually; they work in the background, providing Claude with the right context at the right time.Architecture
n8n-skills works by combining two components:| Component | Role |
|---|---|
| n8n-mcp MCP server | Data access — 525+ nodes, validation engine, 2,653+ templates, workflow management |
| Claude skills | Expert guidance — how to use MCP tools correctly, which patterns to apply, how to interpret errors |
The n8n-mcp MCP server must be installed and configured before the skills can access node data, templates, or workflow management tools. See Installation to get set up.
The 7 skills
Expression Syntax
Master n8n’s
{{}} expression syntax, core variables ($json, $node, $now, $env), and the critical webhook .body gotchaMCP Tools Expert
Use n8n-mcp tools correctly — right tool for each task, correct
nodeType format, and the right validation profileWorkflow Patterns
5 proven architectural patterns: webhook processing, HTTP API integration, database, AI agent, and scheduled automation
Validation Expert
Interpret validation errors, handle false positives, understand auto-sanitization, and choose the right validation profile
Node Configuration
Operation-aware configuration with property dependency chains (e.g.
sendBody → contentType) and all 8 AI connection typesCode: JavaScript
Write JavaScript in Code nodes with correct data access patterns,
$helpers, DateTime, and the top 5 error patternsCode: Python
Use Python in Code nodes with full awareness of library limitations — no
requests, pandas, or numpy availableSkills Overview
See how all 7 skills complement each other and which queries trigger each one
Why these skills exist
Building n8n workflows programmatically has a set of common failure modes:- Using MCP tools with incorrect parameter formats
- Getting stuck in validation error loops
- Accessing webhook data at the wrong path (
$json.nameinstead of$json.body.name) - Misconfiguring nodes with hidden property dependencies
- Not knowing which workflow pattern fits the task
Skills work together
Skills are designed to compose. When you ask something like “Build and validate a webhook to Slack workflow”, multiple skills activate and collaborate:- Workflow Patterns identifies the webhook processing pattern and provides the node structure
- MCP Tools Expert searches for webhook and Slack nodes using
search_nodes, retrieves configuration withget_node - Node Configuration guides the setup of each node’s required properties
- Expression Syntax provides correct data mapping:
{{$json.body.message}}, not{{$json.message}} - Validation Expert validates the complete workflow and interprets any errors
What’s included
- 7 complementary skills that work together
- 525+ n8n nodes supported
- 2,653+ workflow templates used as grounding for patterns and examples
- 10 production-tested Code node patterns
- Comprehensive error catalogs and troubleshooting guides
Prerequisites
Before using n8n-skills, you need:- n8n-mcp MCP server — installed and configured with your n8n instance URL and API key
- Claude access — Claude Code (desktop), Claude.ai (web), or Claude API (via SDK)
.mcp.json— configured to point Claude at your n8n-mcp server
N8N_API_URL and N8N_API_KEY in your .mcp.json are optional but required for workflow creation and management tools. Without them, read-only tools (node search, validation, templates) still work.Get started
Quickstart
Get to a working state in 4 steps — install the MCP server, configure it, install the skills, and test
Installation
Full installation guide for all platforms: Claude Code plugin, manual, Claude.ai, and the Claude API/SDK