n8n AI Assistant: Build Workflows in Plain English (2026)
n8n's AI Assistant turns plain-English prompts into fully wired automation workflows. Learn setup, prompting tips, credit costs, and real SMB examples.
Table of Contents
- What the n8n AI Assistant Actually Does
- Setting Up the AI Assistant
- From Prompt to Live Workflow: Three Real Walkthroughs
- Prompts That Get the Workflow Right First Time
- Understanding Credits and Costs
- Honest Limitations: What the AI Assistant Won't Build Well
- n8n AI Assistant vs. Building Manually vs. Zapier Copilot
- What the Platform Can Do at Scale
- When to Graduate to Manual Builds
- Frequently Asked Questions
n8n AI Assistant: Build Workflows in Plain English (2026)
You open n8n with a clear goal — automate inbound lead qualification before your sales team starts their day. Two hours later, you're still fighting a misbehaving HTTP node, three credential screens deep, and the workflow still isn't doing what you imagined. The automation that was supposed to save time ate your morning.
That problem got a direct answer on July 9, 2026. n8n shipped its built-in n8n AI Assistant in cloud version 2.29.9 — a chat panel inside the editor where you describe what you want in plain English, and the assistant builds it: nodes placed, logic wired, connections made. You still connect your credentials, but the heavy structural work is done.
This guide covers exactly how the n8n AI Assistant works, which prompts get reliable results, where the credit system matters, and when you're better off building manually.
What the n8n AI Assistant Actually Does
The n8n AI Assistant sits inside the n8n Canvas UI as a chat panel. Describe an automation goal — a trigger, the steps you want, the apps involved — and the assistant plans the workflow, picks the right nodes, places them on the canvas, and wires the logic. Per n8n's documentation, it can also run a test and help diagnose errors in workflows you've already built.
Under the hood, the assistant runs on Claude Opus 4.8. It doesn't send your credential details or workflow execution history to the model — which matters when you're running client data through an agency's n8n instance.
The feature is in Preview on n8n Cloud from v2.29.9. Self-hosted instances get the same capability — more on the cost side of that below.
Setting Up the AI Assistant
On n8n Cloud: The assistant is on by default from v2.29.9 onward. Open any project, click into the canvas, and look for the AI Assistant chat icon in the toolbar. No separate configuration needed.
On self-hosted n8n: You'll need one technical step — adding your API key for the underlying LLM to your n8n environment config. It takes about 10 minutes the first time. If you don't manage the server yourself, hand this to your developer or IT contact. Once it's done, the chat panel works exactly like cloud. Every workflow you build afterward is plain English — no further configuration required.
From Prompt to Live Workflow: Three Real Walkthroughs
These three workflows cover the most common SMB and agency automation requests. Each starts with the exact prompt type that produces reliable results.
Inbound Lead Qualification
- Open the AI Assistant chat panel in your n8n project.
- Enter this prompt: "When a new form submission arrives from my website, score the lead using Claude based on company size and role, then if score > 70 create a HubSpot contact and send a WhatsApp message to my sales team, else add them to an email nurture sequence."
- The assistant generates a workflow: Form trigger node → Claude AI node → conditional branch → HubSpot node and WhatsApp Business Cloud node on one branch, email sequence node on the other.
- Enter your credentials for each connected service — HubSpot API key, WhatsApp Business Cloud token, email provider.
- Test with a sample form submission and verify the branching logic fires correctly.
- If you need a fallback, send a follow-up prompt: "Add a fallback email notification to me if the WhatsApp message fails to send."
Tools: n8n AI Assistant, Claude, HubSpot, WhatsApp Business Cloud, email provider.
Weekly Client Report Generation
- Prompt: "Every Monday at 9am, pull last week's Google Analytics data for my client, summarize performance in 3 bullet points using Claude, then email the report to the client and save a copy to Google Drive."
- The assistant creates: Schedule trigger → Google Analytics node → Claude summarization node → Gmail node → Google Drive node.
- Connect credentials for each service.
- Run a test execution on demand — verify the summary makes sense against actual Analytics data.
- Refine with a follow-up prompt to add client-specific KPIs or a branded subject line.
Tools: n8n AI Assistant, Google Analytics, Claude, Gmail, Google Drive.
Invoice Processing and Accounting Sync
- Prompt: "When an invoice arrives in my Gmail, extract the vendor name, amount, invoice number, and due date using AI, then create a bill in QuickBooks and send a Slack notification to my finance channel."
- Generated workflow: Gmail trigger → Claude extraction node → QuickBooks node → Slack node.
- Map the extracted fields to QuickBooks bill fields — the assistant pre-populates most mappings, but check the invoice number and due date fields yourself.
- Test with a real invoice email.
- Add error handling: "If the AI extraction fails or returns null fields, flag the email as unread and notify me on Slack."
Tools: n8n AI Assistant, Gmail, Claude, QuickBooks, Slack.
Prompts That Get the Workflow Right First Time
The AI Assistant's credit system charges one credit per interaction — each create, modify, or refinement prompt uses one. A vague prompt that needs three correction rounds costs three times as much as a precise one that gets it right the first time.
Four elements in a single prompt consistently produce accurate workflows:
- Trigger: What starts the workflow? (Form submitted, email received, schedule, webhook)
- Apps involved: Name them explicitly. "My CRM" is ambiguous; "HubSpot" is not.
- Data fields: Specify which fields matter. "Extract the invoice amount" beats "get the invoice data."
- Conditions and branches: If there's if/else logic, state both branches. Don't assume the assistant will infer a fallback.
Example of a vague prompt that produces a generic result: "Automate my leads."
Same request written to get the right workflow first time: "When a Typeform response arrives, use Claude to classify the lead as hot, warm, or cold based on the 'company size' and 'timeline' fields, then route hot leads to Pipedrive as a new deal, warm leads to a Mailchimp drip sequence, and cold leads to a Google Sheet."
Understanding Credits and Costs
Each n8n AI Assistant interaction — creating a workflow, modifying it, or asking it to debug an error — uses one credit. n8n Cloud plans include a credit allocation; the exact amount depends on your plan tier. Credits reset on your billing cycle.
Prompt quality is a direct cost lever. A well-scoped prompt that produces a near-correct workflow on the first attempt, plus one refinement pass, uses two credits total. A vague starting prompt that needs five correction rounds uses five.
For agencies running multiple client workflows, the per-execution pricing model makes this more significant. n8n Cloud Pro runs about £50/month at 50,000 executions; Zapier Professional reaches about £370/month at equivalent volume (Softomatesolutions, May 2026). A 20-node AI-built workflow costs the same per execution as a 2-node one — node count doesn't change the price.
Self-hosted n8n drops per-execution costs to zero. Infrastructure runs roughly £15–£40/month depending on server size — practical for agencies running many simultaneous client workflows who are willing to manage the host.
Honest Limitations: What the AI Assistant Won't Build Well
The n8n AI Assistant is strong at standard integration patterns. It's weaker in four areas:
Complex multi-agent chains. If your workflow needs multiple AI agents coordinating with each other — passing outputs back and forth, running sub-agents conditionally — the assistant can start the structure, but manual node configuration usually gets you there faster.
Custom JavaScript logic. Anything requiring a Code node with non-trivial logic should be built manually. The assistant can scaffold the surrounding workflow and leave a placeholder Code node, but it won't write complex custom functions reliably.
Regulated environments requiring full audit trails. If every node setting needs to be documented for compliance, manual builds give you explicit control over each configuration choice. AI-generated workflows are inspectable, but the record of why each setting was chosen lives in your chat prompts, not in the node itself.
Highly specific API calls with unusual auth patterns. Integrations with custom OAuth flows or non-standard authentication are better handled manually or through n8n's existing node library.
For everything else — standard triggers, mainstream SaaS integrations, conditional branching, scheduled reports, AI-powered classification — the assistant builds faster than dragging nodes by hand.
n8n AI Assistant vs. Building Manually vs. Zapier Copilot
Against Zapier Copilot: Zapier Copilot suggests a workflow structure and then requires you to manually map fields between steps. The n8n AI Assistant handles node selection, placement, and configuration end-to-end. The one remaining manual step in n8n is connecting your credentials — unavoidable for security reasons, and true of Zapier too. At agency workflow volumes, n8n's per-execution pricing versus Zapier's per-task billing creates a real cost gap: roughly 80–90% cheaper for complex multi-step workflows (Softomatesolutions, May 2026).
Against building manually in n8n: Manual builds are still faster when you already know exactly which nodes you need and the logic is complex enough that describing it accurately would take longer than dragging it. The AI Assistant pays off most on first-time workflows, unfamiliar integrations, and fast iteration when requirements are still changing.
n8n's node depth matters here. The platform had 70+ LangChain-dedicated AI nodes as of mid-2026 (dancumberlandlabs.com, June 2026), and 35+ new nodes were added between January and June 2026 alone — including dedicated Anthropic Claude, Google Gemini, Perplexity, ElevenLabs, and Groq nodes (ciphernutz.com, June 2026). The AI Assistant can call on all of them.
What the Platform Can Do at Scale
The n8n AI Assistant is a new interface on top of a platform that's already proven itself at larger organizations. Delivery Hero uses n8n across on-call approvals, vendor approvals, and security audit workflows — saving 200 hours per month (dancumberlandlabs.com, June 2026). Musixmatch automated engineering data pipeline workflows and recovered 47 days of engineering time in four months. Kunai saved 300+ hours of development work through migration workflow automation.
Those results came from manually built workflows. The AI Assistant doesn't change n8n's execution model — it changes who can build the workflows. The same platform, now accessible to operators who don't want to learn node configuration.
When to Graduate to Manual Builds
The n8n AI Assistant is a starting point, not a ceiling. As your automation program matures, a few signals suggest it's time to build manually:
- The workflow needs conditional logic across more than 4–5 branches that would take longer to describe accurately than to drag and connect.
- You're reusing a complex pattern you've already built — clone and modify rather than re-describe.
- You need full documentation of configuration choices for a client handover or compliance review.
- You want to use n8n's Model Context Protocol (MCP) integrations — a standard that lets AI models connect directly to external apps — at a level of control the assistant doesn't surface.
For most SMB use cases and the majority of agency client workflows, the AI Assistant handles the build fine. Manual mode is there when you outgrow it, not as a starting requirement.
Frequently Asked Questions
Is the n8n AI Assistant free, or does it cost extra?
The n8n AI Assistant is included in n8n Cloud plans from v2.29.9 onward — there's no separate add-on fee. Each interaction uses credits from your plan's allocation, which resets on your billing cycle. Self-hosted users can enable the assistant by connecting their own LLM API key at the environment level, after which there's no per-interaction platform cost beyond what the LLM provider charges.
Can the AI Assistant build multi-step AI agent workflows?
Yes, for standard patterns. It can create workflows that include Claude or other LLM nodes for classification, extraction, and summarization — and can wire those into conditional branches or sequential processing chains. For complex multi-agent orchestration where several AI nodes coordinate with each other, manual configuration gives you more precise control over agent handoffs.
How many credits does each AI Assistant interaction use?
One credit per interaction — whether that's the initial workflow creation, a modification request, or a debugging ask. Credit allocation depends on your n8n Cloud plan tier. Precise, detailed prompts reduce the number of rounds needed and therefore keep your credit spend down.
Does the n8n AI Assistant work on self-hosted instances?
Yes. Self-hosted instances running v2.29.9 or later support the AI Assistant. You'll need to configure your LLM API key in the environment settings — a one-time setup. Once configured, the assistant works identically to the cloud version.
What's the difference between n8n AI Assistant and Zapier Copilot?
Zapier Copilot suggests a workflow outline and requires you to map data fields manually between steps. The n8n AI Assistant builds the full workflow — node selection, placement, and configuration — end-to-end. You connect credentials; the assistant handles structure. n8n also charges per workflow execution rather than per task, which makes multi-step AI workflows significantly cheaper at volume.
What happens if the AI Assistant builds a workflow incorrectly?
Send a follow-up prompt describing the specific issue: which node behaves wrong, what outcome you expected, what you got. The assistant modifies the existing workflow rather than starting over. If the generated workflow is substantially wrong, you can discard it and re-prompt with a more detailed description — the credit cost of a redo is low compared to manual troubleshooting.
Which LLM does the n8n AI Assistant use?
The assistant runs on Claude Opus 4.8. It doesn't send your credential information or execution history to the model — only the workflow structure description and your prompt are used in the request.
Start With One Workflow This Week
Pick the most repetitive task your team does manually — the one that produces groans when it comes up. Open the n8n AI Assistant, write a prompt that names the trigger, the apps, the data fields, and any branching logic. Let it build the first version, then spend one refinement prompt tightening the error handling.
The 8,515 community workflow templates in n8n's library (dancumberlandlabs.com, June 2026) are worth browsing before you prompt — sometimes an existing template gets you 80% of the way there, and the AI Assistant handles the remaining customization.
One workflow. This week. The time you recover compounds from there.
Ready to automate your business?
Let's talk about the workflows that would make the biggest difference for your team.
Free audit