Technical 7 min read

Why I don't use n8n (and what I do instead)

n8n demos well. But a compelling demo and a reliable production system are different things, and the distance between them is where businesses get hurt.

If you’ve been pitched an AI system recently, there’s a good chance you saw n8n in the demo. It’s become the go-to tool for AI consultants building automated workflows: connecting data sources, chaining prompts, integrating APIs through a clean visual interface. Nodes connect to nodes, data flows left to right, and it looks like architecture.

It might even have been the moment you thought: “This is real. This person knows what they’re doing.

I don’t use it. Here’s why, and why it matters to you as the person paying for the system.


What n8n Actually Is

To be fair, n8n is a legitimate tool. It’s a visual workflow engine that lets you connect data sources, trigger actions, and pass information between systems (including AI prompts) without writing much code. Think of it as a graphical pipeline builder. You can see how everything connects and wire up integrations relatively quickly.

For certain use cases, that’s genuinely useful. We’ll come back to those.


Why It Looks So Convincing in a Demo

n8n demos well. That’s not a criticism; it’s the product’s greatest strength and the reason consultants reach for it. You see boxes connected by lines, data flowing through each step, and the logic feels transparent. It looks like you’re seeing the system’s brain.

But what you’re actually seeing is the wiring, not the thinking. The visual interface shows you how data moves between steps. It doesn’t show you whether the data is structured well, whether the system will hold up when something unexpected arrives, or what happens when the person who built it moves on.

This is the gap that matters. A compelling demo and a reliable production system are different things. The distance between them is where businesses get hurt.


The Handover Problem

Here’s the scenario that plays out more often than it should.

A consultant builds you an n8n-based system. The demo is impressive. The workflows run. You sign off, pay the invoice, and the engagement ends.

Three months later, an API credential expires. Or Twilio changes their webhook format. Or Google updates their Calendar API. The workflow that looked so clear in the demo is now a red node with an error message nobody in your business understands. You call the consultant (maybe they’re available, maybe they’ve moved on). Either way, you’re dependent on someone external to keep your own system running.

This isn’t a rare edge case. APIs change. Credentials rotate. Platforms update. In a code-based system, these are routine maintenance tasks that any competent developer can diagnose and fix. In an n8n workflow, they require someone who understands both the platform and the specific way your workflows were built. That’s a smaller pool of people, and you don’t control it.

The visual interface that made the system easy to understand in a meeting makes it no easier to fix when something breaks. The nodes and connectors that looked like clarity become a dependency you didn’t sign up for. (If you run an agency building these systems for clients, the economics of that dependency are about to become a client conversation.)


The Deeper Problem: It Can Mask Weak Data Thinking

Many consultants reach for n8n before they’ve sorted out the data model. The visual interface creates an illusion of architecture. You can wire together a sophisticated-looking workflow without ever asking the hard question: what does my data actually need to look like?

The nodes and connectors become a substitute for that discipline. You end up with workflows that are hard to debug, hard to scale, and hard to hand off. They work until they don’t. And when they don’t, diagnosing the problem means tracing data through a visual pipeline that was designed to look good, not to fail gracefully.

n8n doesn’t solve your data problem. It can paper over it.


The Hidden Operational Cost

Beyond the handover risk, there’s a running cost that rarely gets discussed in the sales conversation.

In a typical small or mid-sized business, the n8n platform needs to be installed and maintained (either self-hosted for your responsibility, or on a cloud subscription with ongoing cost). Every API connection needs to be credentialed and maintained separately. Updates to the platform itself can break existing workflows. And all of this accumulates quietly in the background while you’re focused on running your actual business.

Good consulting should leave you more capable and more independent. Not tethered to a third-party platform you didn’t choose and don’t fully understand.


Opaque to the Tools That Matter Most

There is another cost that is easy to miss: visual workflow configurations are opaque to AI itself.

We wrote recently about why codebases need to be legible to AI. The systems that AI can understand, maintain, and extend are the ones built with explicit structure and clear interfaces. Code is legible. A well-structured data model is legible. An n8n workflow exported as JSON is a proprietary format that no AI coding tool can reason about, debug, or extend without deep platform-specific knowledge.

This matters because AI-assisted development is not a future consideration; it is how software is maintained now. A code-based system can be understood, modified, and improved by AI tools. An n8n workflow cannot. You are locking your business logic into a format that the most powerful development tools available cannot work with directly.


The Better Starting Point: Your Data Model

I start with a different question: what does this data actually need to look like?

Before writing a line of code, I design clean, discrete, well-structured data models for each domain I’m working with: a clear schema for each part of the business. When that model is right, the pipeline logic becomes almost self-evident. The structure tells you what transformations are needed and how the system should behave.

The data is the architecture. The pipeline just follows.

This might sound abstract, but here’s what it means in practice. When you need to change something (add a new field, connect a new service, generate a new report), the change is straightforward because the foundation is sound. You’re not re-routing a visual pipeline and hoping nothing downstream breaks. You’re updating a model that everything else is built on.


Layer Sophistication Without Losing Control

Once the data model is solid, you can stack increasingly powerful capabilities on top: document analysis, photo and video processing, image generation, complex reasoning chains. All are coded robustly and all feed back into the same expanding data structure. The model grows and enriches over time, staying coherent because the foundation was right from the start.

This answers the obvious objection: can you do complex things without n8n? Yes. And you can do them more reliably, because your foundation holds.


Robustness You Actually Own

Visual workflows are only as robust as the data flowing through them. When an API changes or a feed arrives malformed, workflows can fall over in ways that are genuinely difficult to diagnose. n8n does offer basic retries and logs; but you don’t own the underlying control plane the way you do with code. With code you get proper error handling, input validation, circuit breakers, and logging you actually control. When something breaks (and it will), the system fails gracefully and tells you exactly why.

That’s the difference between a prototype and a production system. And it’s the difference between a system that needs its builder on speed-dial and one that any competent developer can maintain.


The Real Payoff: Portable IP

Here’s the part that matters most to a business owner thinking long-term.

Your data becomes the asset. n8n workflows are exportable, but they’re coupled to how n8n thinks about execution. Move to a different platform and you’re rebuilding. A clean data model is portable to any stack. Platform-independent. Extractable in a single clean pull. If you need to swap providers, change your processing layer, or scale the system, the data comes with you.

With n8n, you’re building workflows tied to a platform. With clean data models and robust code, you’re building business infrastructure that you own outright.


Where n8n Actually Earns Its Place

n8n is genuinely useful as a bridge tool: integrating messy legacy systems, wiring together disparate data sources as a pragmatic first step before the clean architecture is in place. That’s a legitimate and specific use case.

But it’s a bridge, not a destination.


If You’ve Already Been Sold an n8n System

If you’re already running n8n workflows, you don’t have to throw them away overnight. Start by asking: what does the underlying data actually look like? Is it structured, consistent, and portable? Or is it scattered across workflow nodes with no coherent schema?

Then progressively migrate your most brittle workflows into code, starting with the ones that break most often. Let n8n continue handling legacy integrations at the edges while the clean architecture is built alongside it. Over time, n8n’s role shrinks to the periphery and your core system becomes robust, portable, and genuinely yours.


The Question Worth Asking

Next time someone shows you a workflow tool with an impressive visual interface, ask one question:

What happens to this system when you’re not here to maintain it?

If the answer involves you calling them back, the architecture isn’t serving you. It’s serving them.


Perth AI Consulting designs AI systems on solid data foundations: robust, portable, and built to outlast the consultant who delivered them. If your business is drowning in manual admin, invoicing, or lead follow-up, see how we approach workflow and admin automation the code-based way. Start with a conversation.

Published 12 March 2026

Perth AI Consulting delivers AI opportunity analysis for small and medium businesses. Start with a conversation.

Prepared by Claude, directed and approved by PAC.

More from Thinking

Evaluation 11 min read

AI in property valuation: the evidence, the design rules, and what it could become

The best Australian evidence on vision AI in valuation measures a different task than the one vendors demo. The findings, and the design rules that follow.

Evaluation 7 min read

Eleven cells moved. Here is what they mean for your business.

Reading the September 2026 State of AI verdict table: what improved, what declined, and what to do differently this quarter.

Evaluation 7 min read

Competitor intelligence for small business: what AI can and cannot see

What AI-assisted competitor intelligence really is for a small business: the public sources worth watching, what they cannot tell you, and the legal line.

Evaluation 10 min read

AI in regulated professional work, Mid-2026

One structure links family law, valuation, and building inspections: a signed document others rely on. How each field's regulator answered the AI question.

Technical 9 min read

The business knowledge base: evidence, risks, and how to build one

What a business knowledge base actually is, what the evidence says it delivers, the security and privacy realities, and how we build one that holds up.

Evaluation 8 min read

What AI can see in your customer data (and what it cannot)

What AI can genuinely find in the customer records an SME already holds, what it cannot, and when a spreadsheet honestly beats a model.

Building 7 min read

What an AI quoting engine actually does

What an AI quoting engine takes in, what it drafts, what the evidence says about accuracy and speed, and why the final price stays with a human.

Adoption 6 min read

Australia's AI adoption gap is bigger than the 12% headline suggests

ABS says 12% of Australian businesses use AI. The real story is 35% of large businesses against 11% of small ones, and the barrier isn't the technology.

Building 7 min read

Why we let AI run the interviews (and why we never let it pretend to be human)

AI-conducted interviews compress weeks of stakeholder discovery into days, standardise what gets asked, and lower the guard that distorts honest answers.

Adoption 14 min read

How AI capability actually moves through a business

The decisive variable in SME AI adoption is the human absorption sequence, not the tooling. A working framework from observation across WA businesses.

Evaluation 7 min read

AHPRA advertising rules for psychologist websites

Recovery stories, 'specialist', 'clinical psychologist', and endorsement titles are where psychology sites breach the National Law. A practical read-through.

Adoption 4 min read

Customer service AI has finally grown up

Chatbots and AI receptionists earned their bad reputation. What changed, and how the mature version answers every call without replacing anyone.

Evaluation 6 min read

Who can use the titles 'Dr', 'Specialist', and 'Surgeon'?

AHPRA restricts 'specialist' and 'surgeon' to specific registrations, and 'Dr' has its own rule. What health practice websites can and cannot claim.

Adoption 5 min read

Your best people hate writing reports

The operators you promote are brilliant at the work and allergic to reporting. A scheduled AI call interviews them, drafts the briefing, they approve it.

Building 6 min read

Your website isn't just for humans anymore

How to build a chatbot that keeps itself up to date, can't leak client information, and won't answer beyond what you've published.

Evaluation 7 min read

Can you show Google reviews on your health practice website?

AHPRA bans clinical testimonials, even true ones, but service reviews are fine. What that means for the Google reviews widget on your practice site.

Evaluation 7 min read

What AHPRA's advertising rules mean for your website

Your practice website is advertising under the National Law. What AHPRA's rules prohibit, who is responsible, and how to check your own site.

Evaluation 8 min read

Is it safe to paste client data into ChatGPT?

Short answer: it depends on one setting, and most people have it wrong. What ChatGPT, Claude and Copilot do with your data, and what the Privacy Act expects.

Evaluation 4 min read

What a good AI audit actually delivers

The audit report named one recommendation specific enough to check, and what the Build that followed looked like: one real engagement, generalised.

Evaluation 7 min read

AI and video, Mid-2026: the models can watch now, not just listen

AI could always transcribe video. It can now read the frames as well, and every hour of footage a business owns becomes something it can question.

Building 7 min read

Case study: a 119-page AML/CTF program in three days

How we built a seven-document AML/CTF compliance pack for a small accounting practice in three days, working from 31 confirmed assumptions.

Building 11 min read

From evidence base to delivery: a production AI methodology

How we delivered 34 evidence-anchored AI briefings to a WA peer-advisory chapter: fact-checked literature review, multi-agent verification, one method.

Technical 9 min read

The six functions of a working AI system

A working AI system is six functions doing six jobs. When all six connect, hallucinations get caught, outputs hold steady, and models become swappable.

Technical 7 min read

Supervised autonomy: the middle path for AI architecture

Between drafts you approve and agents you hope about sits the middle path: an envelope of authorised routine work, supervised, audited, and yours to widen.

Evaluation 5 min read

The state of applied AI in Mid-2026

Our literature review of applied AI in mid-2026: ten capability categories, three fact-check passes, written for operational leaders.

Technical 9 min read

How to design a PHI redaction system for clinical AI

PHI redaction is part of a clinical AI tool's architecture, not a feature you add. What the literature says it should look like, and how we built it.

Building 9 min read

How we built on-device de-identification so AI never sees real names

Most AI privacy is a policy. Ours is architecture: an NER model runs in the browser and strips names before anything leaves the device.

Technical 7 min read

Your agency's clients are about to ask why this costs so much

A solo consultant built in three weeks what your agency quoted twelve for. The client doesn't know why yet. The agencies that survive change what they sell.

Adoption 6 min read

What do you love doing? What do you hate doing?

Ask people what they love doing and what they hate doing, then show them AI is coming for the second list. Why the reframe works, and how it fails.

Technical 10 min read

Your codebase was not built for AI. That's the actual problem.

Amazon's mandatory meeting about AI breaking production is an architecture story: codebases built for human maintainers only, now maintained by AI.

Adoption 4 min read

Your team has AI licences. You don't have an AI system.

Fifteen people, fifteen separate AI accounts, no shared context. The problem isn't the tool; it's the architecture around it. Here's the fix.

Building 7 min read

Your $2,000 day starts the night before: our system keeps you on the tools, not on the phone

Optimised routes overnight, automatic customer notifications, and promises the system keeps or corrects. A scheduling system that protects your daily rate.

Evaluation 4 min read

The fastest way for an executive to get across AI

AI moves faster than any executive can track. One focused conversation, one written report, and a decision you can act on: your time stays on the business.

Building 6 min read

Your IT department will take 18 months. You need this working by next quarter.

Senior leaders know what they need built; the gap is time. A prototype gets the tool working now and hands IT a validated blueprint for later.

Building 8 min read

We built an AI invoice verifier. Here's where it hits a wall.

We built an AI invoice verifier and watched a fake beat a real invoice. Why document analysis alone cannot stop fraud, and the five layers that can.

Building 5 min read

How to build an AI chatbot that doesn't lie to your customers

Woolworths scripted its AI to talk about its mother. The business fix is honesty; the technical fix is architecture that prevents fabrication by design.

Technical 9 min read

Why AI safety features are load-bearing architecture, not political decoration

The 'woke AI' label came from real failures, but they were engineering failures, not safety failures. The difference matters wherever errors have consequences.

Adoption 3 min read

Woolworths' AI told a customer it had a mother. That's a problem.

Woolworths' AI assistant Olive was scripted to talk about its mother and uncle. When callers realised, trust broke instantly. The fix is honesty.

Evaluation 5 min read

Google is no longer the only way your customers find you

Customers now find businesses through ChatGPT, Perplexity, and Gemini. The sites AI cites are structured differently to the sites Google ranks.

Evaluation 6 min read

The personal workflow analysis: what watching a real workday reveals about automation

People describe the work they value, not the work that eats their time. Recording a real workday reveals the automation opportunities interviews miss.

Evaluation 11 min read

An AI audit that starts with your business

How an operations-first AI audit works: what it looks for, how the evidence is collected, what the report contains, and what it tells you to skip.

Building 6 min read

What production AI teaches you that demos never will

The gap between a demo and a working system is where the useful lessons live. Architecture, framing, privacy, adoption: the patterns repeat every time.

Adoption 6 min read

The psychology of why your team won't use AI

You buy the tool, run the demo, and three months later nobody is using it. Five predictable psychological barriers, each with a strategy that works.

Technical 4 min read

Stop telling AI what NOT to do (and what to say instead)

Instructions built on prohibitions make AI cautious and generic. Describing what you want instead transforms the output, and the reason comes from psychology.

Building 5 min read

How we turned generic AI into a specialist: and what that means for your business

Mediocre AI output is rarely the model's fault. Three structural changes that turn the same model from generic to specialist-grade.

Evaluation 6 min read

Your business has 9 customer touchpoints. AI can fix the 6 you're dropping.

You pay to get customers to your door, then lose them to missed follow-up. AI can handle the six touchpoints most businesses drop.

Technical 6 min read

What happens to your data when you press 'Send' on an AI tool

Businesses send customer data to AI tools without knowing what happens during processing. The spectrum of AI privacy is wider than you think.