n8n Getting Started
n8n is one of the most powerful automation platforms available — and one of the most accessible for teams with technical resources. Open-source, self-hostable, and with native AI capabilities, n8n is the platform of choice for businesses that want maximum control over their automation infrastructure. This guide walks you through n8n setup from account creation to your first working automation.
What n8n Is
n8n (pronounced "n-eight-n") is an open-source workflow automation platform. It connects your apps and services through visual workflows, allowing you to automate processes without writing traditional code. Its key differentiators:
Open source: The n8n engine is open source. You can inspect the code, extend it, self-host it, and contribute to the community. For businesses, this means no vendor lock-in and full transparency.
Self-hostable: n8n can run on your own infrastructure — a VPS, Docker, Kubernetes. This gives you control over data residency, costs, and performance. At high workflow volumes, self-hosted n8n is dramatically more economical than cloud-only alternatives.
Developer-friendly: n8n includes Code nodes that let you write JavaScript or Python for complex logic. Workflows are stored as JSON and can be version-controlled. API access allows programmatic management of workflows.
AI-native: n8n has built AI deeply into its platform — LangChain nodes, AI Agent nodes, vector store connections, and native integrations with OpenAI, Anthropic (Claude), and other AI providers.
Setting Up n8n
n8n Cloud (easiest start):
- Go to app.n8n.io and create an account
- Choose a plan (the Starter plan at $20/month is sufficient to start)
- Your n8n instance is immediately available at a cloud URL
- No infrastructure setup required
n8n Self-hosted with Docker (recommended for production):
Prerequisites: a VPS (Digital Ocean, Hetzner, Linode), Docker installed
For a persistent deployment with SSL, use Docker Compose with Traefik or Nginx as a reverse proxy. The n8n documentation provides complete setup guides for most cloud providers.
Understanding the Interface
n8n's interface has three main areas:
Workflow canvas: The central area where you build and view workflows. Nodes appear as rounded rectangles; connections between them appear as lines. Click any node to configure it.
Node library: The left panel (or accessible via the + button) shows all available nodes — triggers, actions, transformations, and AI nodes. Search for specific apps or node types.
Execution list: The right panel shows recent workflow executions — successful runs in green, failures in red. Click any execution to see the data at each step.
Your First Workflow
Build a simple test workflow to understand the basics:
- Click "New workflow" in the top right
- Click "Add first step" or the + button
- Search for "Manual Trigger" and add it — this lets you run the workflow manually
- Click the + after the trigger and search for "Set" node — this transforms data
- In the Set node, add a field: Name = "greeting", Value = "Hello from n8n!"
- Click the play button to run — you'll see the output in the execution panel
For your first real automation:
- Add a trigger appropriate to your use case (Webhook for external events, Schedule for time-based)
- Add data-fetching nodes (HTTP Request, or app-specific nodes like HubSpot, Gmail)
- Add an AI node (Anthropic for Claude, OpenAI) with your prompt
- Add action nodes (update CRM, send email, create task)
Setting Up Credentials
n8n stores API credentials securely in its credential manager. Before building integrations:
- Go to Settings → Credentials
- Click "Create new credential"
- Search for the service (e.g., "Anthropic")
- Add your API key
- Test the credential to confirm it works
Once created, credentials are available in all relevant nodes. Never paste API keys directly in node configurations — always use the credential manager.
Recommended Tools
- n8n Cloud — Start here if you want zero infrastructure setup
- n8n Community — Active forum for questions and examples
- Claude API — Connect for AI-powered automation
- HubSpot — CRM integration for sales and marketing workflows
- Airtable — Flexible database for workflow data storage
“n8n has a learning curve. The first workflow takes time; the tenth takes minutes. Invest in learning the platform and it pays back quickly.”
Related articles
n8n vs Make.com vs Zapier: a 2026 honest comparison
No affiliate fluff — where each tool wins, where it breaks, and what we actually run.
Self-hosting n8n: a production-grade setup guide
Queue mode, workers, backups, and the security defaults you should never skip.
Complete n8n Guide: Everything You Need to Build Powerful Automations
The definitive n8n guide — nodes, credentials, triggers, and production-grade patterns.