What is n8n? Search “workflow automation” and you’ll run into Zapier and Make within the first few results. Dig a little deeper — especially in developer communities — and a third name keeps coming up: n8n, pronounced “n-eight-n.” Once you understand why it’s built the way it is, it’s easy to see why so many technical teams have switched to it.

What Is n8n, Exactly?
n8n is a workflow automation platform that connects apps, APIs, and services through a visual, node-based editor — but with one major difference from Zapier or Make: you can self-host it. The name itself is a numeronym, short for “nodemation” (node + automation), with the “8” standing in for the eight letters between the first and last “n.”
It’s licensed as “fair-code” rather than fully open source, which in practice means the source code is public and you can self-host it for free, but there are some commercial-use restrictions if you’re building a competing product on top of it.
For the vast majority of businesses just automating their own operations, this distinction doesn’t matter — you get a genuinely free, unlimited version. If someone on your team asks “what is n8n and why are we paying a server bill for it instead of just using Zapier,” the honest answer is control: over cost, over data, and over exactly how a workflow behaves.
The Core Idea: Triggers, Nodes, and Actions
Every n8n workflow starts with a trigger — a schedule, a webhook, a new row in a spreadsheet, an incoming email. From there, you connect nodes, and each node does one job: call an API, transform data, branch on a condition, loop through a list, or run custom code.
You drag them onto a canvas and wire them together, and the whole workflow is visible at a glance — no scrolling through a list of disconnected “steps” like some tools force you into.
Where n8n really separates itself is the Code node. If a built-in integration doesn’t do exactly what you need, you drop in actual JavaScript or Python and keep going, in the same canvas, without switching tools. As of 2026, the platform lists over 1,830 integrations, according to n8n’s own integrations directory, and because the node framework itself is open, missing ones can often be built by the community or written in-house.
Self-Hosted vs. Cloud: The Decision That Actually Matters
This is the choice that shapes everything else about using n8n.
Self-hosted (Community Edition) is free software — no license fee, no execution caps, no workflow limits. You run it on your own server (a $5–20/month VPS is typically enough), which means you also own your data completely and can connect it to internal systems that would never touch a third-party cloud. The tradeoff is that you’re responsible for keeping the server updated and running.
n8n Cloud removes that maintenance burden. As of 2026, pricing runs roughly $20–24/month for the Starter plan (around 2,500 executions/month) and $50–60/month for Pro (around 10,000 executions), with a Business tier above that for higher volume. Every cloud plan now includes unlimited workflows and unlimited users — the only thing that changes between tiers is how many workflow runs you get per month.
That “per execution” detail matters more than it sounds. n8n counts one full workflow run as a single execution, regardless of how many steps or nodes it contains. That’s a fundamentally different pricing model than Zapier, which charges per individual step (“task”). A 10-step workflow that runs once costs the same on n8n as a 1-step workflow — but would cost 10x more on a per-task platform.
Where AI Fits In
If you’re wondering what is n8n really capable of beyond basic app connections, this is the part that matters most in 2026. Since 2024, n8n has been repositioning itself from a pure workflow tool toward what it calls “AI orchestration.” The centerpiece is the AI Agent node, which lets a workflow connect to an LLM and make decisions mid-run instead of just following a fixed sequence.
Instead of only reading unstructured input on a schedule, it can decide which tool to call next and adjust its next step based on what it finds. This is functionally similar to what Make.com’s own AI Agent builder does, and it’s part of a broader shift across automation platforms toward workflows that reason rather than just execute.
n8n has also added native support for the Model Context Protocol (MCP) — the same standard documented in Make’s own MCP Server guide — which lets external AI assistants like Claude or ChatGPT call an n8n workflow directly as a tool, rather than the workflow only running on its own schedule or trigger.
That’s a meaningfully different use case from the AI Agent node: the AI Agent node lets a workflow think for itself, while MCP support lets an outside AI reach into n8n and use it as a capability. Together, they’re why n8n increasingly shows up in “AI infrastructure” conversations rather than just “automation” ones.
Who n8n Actually Makes Sense For
n8n isn’t automatically the “better” choice than Zapier or Make — it’s a different tradeoff. It tends to be the right fit when:
- You have someone on the team comfortable managing a server, or you’re fine paying for cloud hosting
- Data residency or compliance requirements mean sensitive information can’t sit on a third-party’s infrastructure
- Your workflows are complex enough that writing a few lines of JavaScript is faster than chaining together six generic modules
- You’re running high execution volumes where per-task pricing on other platforms would get expensive fast
If none of that applies — if you just want the fastest path from “I have an idea” to “it’s automated,” with zero server management — a fully managed platform like Zapier or Make.com will usually get you there with less friction.
What a Real n8n Workflow Looks Like
Abstract descriptions of “nodes and triggers” only go so far. Here’s a workflow that’s genuinely common among small teams: automatically triaging support tickets that come in through a contact form.
The trigger is a webhook — the contact form fires it the moment someone submits a request. From there, the workflow passes the message text into an AI Agent node, which classifies the ticket (billing, technical, general inquiry) and estimates urgency based on the wording.
A conditional branch then routes the ticket: urgent technical issues go straight to a Slack channel the on-call engineer watches, billing questions get logged into a spreadsheet for the finance team, and everything else lands in a shared inbox with a priority tag attached. The entire thing runs as one execution, no matter how many branches it takes internally — which, going back to the pricing model above, is exactly the kind of workflow where n8n’s per-execution billing pulls ahead of a per-step competitor.
None of the individual pieces here are exotic — webhooks, conditionals, and Slack integrations exist on every automation platform. What’s different is that the classification step isn’t a rigid keyword match; it’s genuinely reading and interpreting the ticket, which is only practical because the AI Agent node sits natively inside the same canvas as everything else.

Getting Started
The fastest way to try n8n without committing to server setup is the 14-day free trial on n8n Cloud. If you already know you want to self-host, the official n8n documentation walks through Docker-based deployment, which is the most common setup — it keeps the installation isolated, easy to update, and simple to back up. Either path gets you to the same visual builder; the only difference is who’s responsible for the infrastructure underneath it.
Is n8n free to use?
Yes, if you self-host it — this is one of the most common follow-up questions once people understand what is n8n’s licensing model. The Community Edition is free software with unlimited workflows and executions — you only pay for the server it runs on, typically $5–20/month. n8n Cloud, the fully managed option, starts at roughly $20–24/month and is billed based on execution volume rather than being free.
What does “n8n” actually stand for?
It’s short for “nodemation” — a blend of “node” and “automation.” The number 8 in the name represents the eight letters sitting between the first and last “n” in that word, which is why it’s read aloud as “n-eight-n.”
Is n8n better than Zapier or Make.com?
It depends on what you’re optimizing for. n8n wins on cost at scale (execution-based pricing, free self-hosting) and on flexibility (built-in code nodes, full self-hosted control). Zapier and Make win on ease of setup and not needing any technical maintenance. Teams with in-house technical capacity tend to prefer n8n; teams that want to avoid touching infrastructure entirely tend to stick with fully managed platforms.
Do I need to know how to code to use n8n?
No — the core visual builder works entirely by dragging and connecting nodes, the same way Zapier or Make does. Code is optional: it becomes useful once you hit an edge case that a pre-built node can’t handle, at which point dropping in a short JavaScript or Python snippet is faster than assembling several generic nodes to fake the same result.
How many integrations does n8n support?
Over 1,830 as of 2026, covering the usual CRMs, spreadsheets, messaging apps, and databases. Because the node framework is open, that number understates the real total — anything without an official node can often be reached through the HTTP Request node directly against an API, or through a community-built node someone else has already published.
n8n’s core appeal comes down to one thing: it doesn’t force you to choose between “easy” and “powerful.” You get the same visual canvas as any no-code tool, but the moment you outgrow it, the code is right there waiting rather than locked behind a paywall or a support ticket. For teams that expect their automation needs to get more complex over time — not less — that’s worth the extra setup step.
Related Articles
- Business Process Optimization: Strategies, Tools & AI Methods for 2026
- AI Agent Automation for Business: How Autonomous AI Workflows Work in 2026
- AI Workflow Orchestration: How to Coordinate AI Automation in 2026
See also: Make.com vs n8n: 7 Key Differences to Pick the Right Tool (2026)