"AI Automation 2026 — n8n + AI Nodes, Three Workflow Recipes"

Compared with Zapier and Make, self-hosting options, OpenAI/Claude wiring, and three copy-pastable flows


핵심 요약

  • Audience: Anyone losing time on repetitive tasks — solo operators, small teams, plus developers automating intake, content, or support.
  • What you'll get: 1) How n8n differs from Zapier/Make, 2) cloud vs. self-hosted pricing, 3) three immediately reproducible recipes (email triage, content syndication, customer-support draft), 4) wiring OpenAI/Claude, 5) limits and cost controls.
  • Core idea: n8n is a workflow tool with native AI agent nodes. Steeper learning curve than Zapier, but unbeatable on cost, scale, and self-hosting.

1. What n8n is

n8n = a workflow automation platform. Triggers (email, webhook, schedule) flow through nodes (apps, logic, LLMs) to run on autopilot via a visual canvas. The native "AI Agent" node lets you build LangChain-style agents inline.

How it differs from Zapier and Make

n8n Zapier Make
Integrations 400+ 8,000+ 1,500+
Pricing model Per workflow run Per task (per node) Per operation
Self-hosting ✅ Free Community Edition
Cloud entry €24/mo (2,500 runs) $19.99/mo (750 tasks) $9/mo (10,000 ops)
AI nodes 70+ dedicated + LangChain integration Copilot + AI Agents (beta) AI Agents (Oct 2025)
Learning curve Moderate Easy Moderate

Sources: n8n pricing, Zapier vs n8n.

One-liner

  • Zapier = easiest, but expensive at scale (you pay per step).
  • Make = visual, balanced.
  • n8n = most powerful and cheapest (especially self-hosted), with a slightly steeper curve.

2. Pricing — which plan to pick

Cloud

Plan Price Runs Best for
Starter €24/mo 2,500/mo Solo, light usage
Pro €60/mo 10,000/mo Steady production
Business €800/mo 40,000/mo + SSO SMBs
14-day trial No credit card

Self-Hosted (Community Edition)

  • Free, unlimited runs.
  • You pay infrastructure (€5–200/mo, but a €5 VPS often covers a single user).
  • Docker install ~5 minutes (official guide).

Which to pick

Situation Recommendation
Just experimenting Cloud Starter, 14-day free trial
Under 2,500 runs/month Cloud Starter (€24)
~10K runs/month + reliability Cloud Pro (€60)
Data-sensitive / unlimited runs Self-hosted Community
Team / SSO Cloud Business or self-hosted Enterprise

Common path: start cloud for a week, then move to self-hosting once your workflows stabilize.


3. AI nodes — where n8n meets LLMs

3.1 Supported LLM providers

  • OpenAI: GPT-5.5, GPT-5.4, GPT-4o
  • Anthropic: Claude Opus 4.7, Sonnet 4.6
  • Google: Gemini 3 Pro, Flash
  • Local LLMs: Ollama (Llama 3, Mistral, Qwen)
  • Others: HuggingFace, Cohere

3.2 Four core nodes

Node Role
AI Agent LLM + tools (other nodes) + memory. ReAct pattern.
OpenAI / Anthropic / Gemini Chat Plain LLM call (input → output)
Memory Window / Buffer / Vector — retain conversation context
Tool Functions an agent can call (HTTP, Sheets, Slack, etc.)

3.3 Cost model — n8n itself + LLM API

  • n8n executions: 1 run = 1 execution. A 20-step workflow still counts as 1 execution.
  • LLM API: billed separately (your OpenAI / Anthropic / Google key).
  • Example: email-triage workflow at 100/day → 3,000 runs/month = Pro plan + Claude Haiku tokens (~$2–5/month).

4. Three copy-pastable recipes

4.1 Recipe 1 — Email triage and summary

Problem: Inbox is on fire. You need important / to-do / newsletter / spam triage daily.

Workflow

Gmail trigger (new message)
  → Claude Haiku node (classification prompt)
    "Classify this email as one of [Important / To-do / Newsletter / Spam]
     and add a one-line summary if it's Important or To-do."
  → Switch (route by label)
    - Important → Slack DM
    - To-do → Notion database row
    - Newsletter → Just label it
    - Spam → Trash

Estimated cost - 100 messages/day × 30 days = 3,000 runs → Pro €60/mo - Haiku tokens (~200 in × 100/day) ≈ $0.05/day → ~$1.50/month - Total ≈ €60 + $1.50 ≈ €61.50/month

Alternative: self-host + Haiku → ~$1.50/month total.

4.2 Recipe 2 — Write once, distribute everywhere

Problem: You write a blog post and don't want to re-edit it for LinkedIn, Twitter, and Discord every time.

Workflow

Webhook trigger (receives blog post URL)
  → HTTP Request (fetch the article)
  → AI Agent (Claude Sonnet 4.6, 4-block system prompt)
    Output JSON: { linkedin_post, twitter_thread, discord_summary }
  → Three branches:
    - LinkedIn API → publish (or save draft)
    - Twitter API → post thread
    - Discord webhook → channel summary

Trick: one LLM call returns JSON for all three channels — token cost ⅓ vs three separate calls.

4.3 Recipe 3 — Customer-support first-pass drafts

Problem: Your small business gets daily inquiries you can't answer within 24 hours.

Workflow

Gmail trigger (specific label or main inbox)
  → AI Agent (Claude Sonnet 4.6 + Notion DB tool)
    Tool 1: Search Notion FAQ
    Tool 2: Lookup order DB
    Prompt: "Read the customer email, find the answer in the FAQ;
     if it's order-related, query the order DB.
     If you're unsure, return 'NEED_HUMAN'."
  → If NEED_HUMAN
    Yes → Slack #cs channel for human review
    No → Save Gmail *draft* (recommend manual click before sending)

Safety rails - Start with drafts only, not auto-send. - Monitor accuracy for a week before allowing auto-send for safe categories. - Keep the "NEED_HUMAN" threshold conservative.


5. Limits + cost control

Limits

  • Hallucination: Without RAG or Tool Use grounding, LLMs hallucinate.
  • Legal liability: Auto-sending email replies, contracts, or payments needs human review.
  • Failure cascades: One API outage stops the whole workflow. Build retries and dead-letter queues.
  • Secrets exposure: Manage API keys via n8n Credentials, not in node JSON.

Five cost controls

  1. Tier the model: Haiku/GPT-4o-mini for classification, Sonnet/Opus for reasoning. ~70% cost cut.
  2. Pre-filter with Switch: Cheap rules handle 80% of branches before you ever call an LLM.
  3. Cap memory: Use Window Memory (last N) instead of full Buffer Memory.
  4. Reduce schedule frequency: 5 min → 15 min cuts run count to ⅓.
  5. Self-host + free LLM: Self-hosted n8n + Ollama Llama 3 ≈ free aside from your VPS bill.

6. First three days

Day Task
1 Sign up for n8n Cloud Starter 14-day trial. Build one workflow without AI: "RSS feed → Slack."
2 Get an OpenAI or Anthropic API key. Add an AI Agent node. Build Recipe 1 (email triage).
3 Evaluate self-hosting (€24/mo cloud vs. €5 VPS + free n8n). Pick 1–2 workflows to operationalize.

7. What it isn't

  • Not a BI tool → Metabase / Looker.
  • Not an ML pipeline orchestrator → Airflow / Prefect.
  • Not for accounting/payment auto-execution → talk to Stripe / QuickBooks directly.
  • Not real-time chatbot infra → host a frontend on Vercel and call LLMs there.

n8n's correct slot: glue between SaaS, LLMs, and HTTP endpoints, with a visual canvas.


Developer notes

  1. Self-host with Docker: docker run -it --rm -p 5678:5678 n8nio/n8n (use a PostgreSQL backend in production).
  2. Backups: SQLite is fine for tiny workflows. For real use, PostgreSQL + automated backups.
  3. Version control: Export/import workflows as JSON, store in Git, review in PRs.
  4. Error workflows: Build a dedicated Error Workflow that other workflows reference, alerting Slack/Discord on failure.
  5. WebSockets + webhooks: n8n exposes both — useful for real-time chatbot frontends.
  6. MCP support: n8n 2.x is shipping Model Context Protocol support — call standardized external LLM tools.
  7. AI Agent node vs raw LangChain: simple flows → AI Agent node; complex graphs → LangGraph plus an n8n HTTP trigger.

References


This is part 7 of 11 in the AI Basics series. Next: n8n in practice — Discord/Notion/Gmail integrations (extension).

댓글

이 블로그의 인기 게시물

Agent Memory Engine (2/10) — Building an AI Agent Memory System with SQLite Alone

"ML Foundations (9/9) — PyTorch vs TensorFlow, and the Road to Local LLMs"

"RAG Core Study (14/26) — Evaluation Sets with RAGAS & DeepEval"

"ML Foundations (8/9) — Deep Learning Architectures: CNN, RNN, Attention"

"ML Foundations (7/9) — Deep Learning Training: Optimizers, Regularization, Initialization"

OpenClaw to Hermes Migration (2/13) — What to Preserve, Partially Port, or Discard

AI Agents I Built (5/7) — Building an Automated Blogger API Publishing System