For years, building an n8n automation meant dragging nodes around a canvas, guessing field names, and bouncing between docs and YouTube to fix one broken connection. That changed in early 2026, when n8n added support for MCP (Model Context Protocol) — a standard that lets AI tools connect to other apps. Now you can describe a workflow in plain English and have Claude Code build it for you.
That is what this guide covers: how to build n8n workflows without coding using Claude Code. At BULDRR AI we build automations for clients every week, and this approach has cut our build time on routine workflows from hours to minutes. Here is how to set it up yourself.
What “Building With Claude Code” Actually Means
Let’s be precise, because the “no coding” promise gets oversold.
Claude Code is Anthropic’s AI coding assistant that runs in your terminal (the command-line window on your computer). n8n is the open-source automation platform that runs your workflows. When you connect them, Claude Code can read your n8n setup, create the nodes, wire the connections, and even fix what’s broken — all from a plain-English description.
So what does “without coding” really mean here? You will not write any workflow logic by hand. No JavaScript, no manually editing JSON. You just say what you want. The honest catch: Claude Code is a developer tool, so you will type a few commands into a terminal to install it. If that sounds intimidating, you can also run Claude Code inside the Claude Desktop app and skip the terminal entirely.
That is the trade. No coding — but a little setup.
What You’ll Need
Three things, and the first two are quick:
- Claude Code — installed on your computer, with a paid Claude plan or API credits to run it.
- An n8n instance — either n8n Cloud (zero setup, beginner-friendly) or n8n self-hosted on your own server (more control, near-zero running cost).
- The n8n MCP connection — the bridge that lets Claude Code talk to your n8n instance. We set this up in Step 3.
That’s the full shopping list. n8n itself connects to 1,000+ apps, so once Claude Code can build inside it, the range of automations you can create is huge.
Step 1 — Install Claude Code
[SCREENSHOT 1: Terminal showing a successful Claude Code install — add your own]
The recommended method is the native installer. Open your terminal and run one command:
- Mac / Linux:
curl -fsSL https://claude.ai/install.sh | bash - Windows (PowerShell):
irm https://claude.ai/install.ps1 | iex
Prefer the package-manager route? You can also install it through npm, which needs Node.js version 18 or newer:
npm install -g @anthropic-ai/claude-codeWhen it finishes, type claude and press Enter. The first time, it walks you through a quick sign-in (an OAuth step) to connect your Anthropic account. That’s it — Claude Code is live. Per Anthropic’s docs, this whole step usually takes under five minutes once any prerequisites are in place.
Step 2 — Get Your n8n Instance Ready
If you’re brand new, start with n8n Cloud — sign up and you have a working instance in minutes, nothing to install.
If you want full control and lower long-term cost, self-host n8n on a small VPS (a private online server). Self-hosting sounds scary, but a modern n8n install is mostly a one-line Docker command, and you own all your data and logs forever. For anyone running client work, that ownership matters.
Either way, make sure you can log in to your n8n dashboard before moving on.
Step 3 — Connect n8n to Claude Code
This is the bridge that makes everything work. There are two ways to do it.
Option A — Generate and import (simplest). You describe the workflow to Claude Code, it writes the n8n workflow file (JSON), and you import that file into n8n through the dashboard’s import option. You then add your credentials to each node. This needs no special connection and is a great first try.
Option B — Live MCP connection (most powerful). You connect n8n to Claude Code using the n8n MCP server. Once connected, Claude Code can read your existing workflows and credentials, build new workflows straight into your instance, test them, and fix errors without you copying anything by hand. The exact setup steps are in the n8n documentation — it’s a short config that points Claude Code at your n8n URL.
Start with Option A to get a feel for it, then graduate to Option B when you want Claude to build directly.
Step 4 — Describe the Workflow in Plain English
This is the part that decides whether you get a great workflow or a messy one. Write your request like a clear brief, not a vague wish.
Weak: “Make me a lead workflow.”
Strong: “When a new row is added to my ‘Leads’ Google Sheet, send me a Slack message with the lead’s name and email, then add them to my Mailchimp list. If the email field is empty, skip that lead.”
Notice the difference. The strong version names the trigger, the steps, the apps, and what to do in the edge case. Claude Code builds exactly what you describe — so the clearer your description, the closer the first version lands. Write the goal down before you start; it matters more than any setting.
Step 5 — Test, Then Fix
Never trust a workflow you haven’t tested. Run it once with safe, fake data — a test row, a test email to yourself. If a node fails, you don’t need to debug it line by line. Tell Claude Code what broke (“the Slack node returns a ‘channel not found’ error”) and let it read the workflow and correct it. This back-and-forth is where the live MCP connection really pays off, because Claude can see the actual error and rewire the node itself.
How to Think About the Two Tools
The pattern most people settle on is simple: Claude as the architect, n8n as the runtime. Claude Code designs and assembles the workflow; n8n actually runs it, on schedule, reliably, 24/7. You’re not replacing n8n — you’re removing the slow, fiddly building part.
What to Realistically Expect
Here’s the honest version. Claude Code is excellent at scaffolding workflows fast and fixing common errors. It is not magic it can pick the wrong node or misread a vague request, which is exactly why Step 5 exists. Treat it like a fast junior builder who needs a clear brief and a quick review, and you’ll save real hours every week. Skip the review, and you’ll ship something that quietly breaks.
Build Your First One Today
You don’t have to start from a blank canvas. Browse BULDRR AI’s free workflows library for templates you can import and then ask Claude Code to customize a great way to learn the pattern. And if you want to see this in action on a real use case, read our guide on building an AI sales agent with n8n and Claude.
Your one next step: install Claude Code and ask it to build one tiny workflow — even just “send me a Slack message every morning at 9am.” Get that single loop working today. Everything after that is the same idea, scaled up.
Common Questions People Ask
Do I really need to code?
No. You describe workflows in plain English and Claude Code builds them. The only “commands” you type are a couple of setup lines to install Claude Code and even those can be skipped using the Claude Desktop app.
Is Claude Code free?
The install is free, but running it needs a paid Claude plan or Anthropic API credits. n8n Cloud has its own pricing, while self-hosted n8n is effectively free to run beyond your server cost.
What’s the n8n MCP server for?
MCP is the connection that lets Claude Code read and write directly to your n8n instance. With it, Claude can build, test, and fix workflows in your account instead of just handing you a file to import.
Can Claude Code fix a broken workflow?
Yes. If you’ve connected it via MCP, it can read the error, find the faulty node, and rewrite the logic. You just describe what went wrong in plain language.
Cloud or self-hosted n8n — which should I pick?
Start on n8n Cloud if you want zero setup. Move to self-hosting when you want full control over your data and lower long-term costs, especially for client work.
Will it build complex workflows or just simple ones?
Both, but clarity scales with complexity. Simple workflows often work on the first try. For complex ones, write a detailed brief and expect to test and refine a couple of times.
Quick Recap
You now know how to build n8n workflows without coding using Claude Code: install Claude Code, get an n8n instance, connect the two (import JSON or use the MCP server), describe the workflow clearly, then test and fix. Claude designs, n8n runs. Your only real job is writing a clear brief and reviewing the result before it goes live.