This guide gets you to a working state as quickly as possible. You’ll install the n8n-mcp MCP server, configure it, install the skills, and verify everything works.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.
Install the n8n-mcp server
The n8n-mcp server provides Claude with access to n8n’s node library, validation engine, and workflow templates. Install it globally with npm:Verify the installation:
Configure .mcp.json
Create or update
.mcp.json in your project root (or home directory) to register the n8n-mcp server with Claude:.mcp.json
N8N_API_URL and N8N_API_KEY are optional. Without them, read-only tools (node search, validation, templates) still work. Add them to enable workflow creation and management.Install the skills
Install n8n-skills as a Claude Code plugin with a single command:That’s it — all 7 skills are installed and will activate automatically.
Test it
Open Claude Code and try a query that exercises multiple skills at once:You should see Claude:Expected: The Expression Syntax skill activates and explains Expected: The MCP Tools Expert skill activates and uses
- Search for webhook and Slack nodes using
search_nodes - Apply the webhook processing pattern
- Configure each node with correct properties
- Map data using
{{$json.body.message}}syntax - Validate the complete workflow
$json.body.* access.search_nodes({query: "slack"}).What happens automatically
Once installed, skills activate based on your query — no configuration or manual invocation needed. The more specific your request, the more skills collaborate:| Your query | Skills that activate |
|---|---|
"How do I write n8n expressions?" | Expression Syntax |
"Find me a Slack node" | MCP Tools Expert |
"Build a webhook workflow" | Workflow Patterns + MCP Tools Expert |
"Why is validation failing?" | Validation Expert |
"How do I configure the HTTP Request node?" | Node Configuration |
"Write JavaScript to transform webhook data" | Code: JavaScript |
"Can I use pandas in a Python Code node?" | Code: Python |
Next steps
Skills overview
See all 7 skills, their activation triggers, and how they compose
Usage guide
Example queries, best practices, and advanced usage patterns
Full installation guide
All installation methods: manual, Claude.ai web, and Claude API/SDK
Workflow patterns
The 5 proven n8n workflow architectural patterns with real examples