Key Takeaways
- n8n now ships native Agents that turn a plain-language goal into steps, runnable from Slack, schedules, or any workflow call.
- Agents draw tools from MCP servers, n8n nodes, or whole existing workflows, and credential isolation means an agent never holds the underlying CRM or system keys.
- One agent turn equals one execution, so execution-based billing plus self-hosting keeps costs predictable as internal tool calls multiply.
Table of Contents
Native Agents Land on the n8n Canvas
n8n Blog broke the news today that the automation platform now ships native Agents, a first-class runtime for describing a goal instead of wiring every step.
n8n now has Agents. You describe what an agent should do, give it a model and the tools and workflows it can use, and it works out the steps itself.
The release lets teams run that same agent from Slack, a schedule, or any workflow call, with the agent carrying its own instructions and tools.
Fixed workflows still fit deterministic sequences like lead enrichment and scoring.
But two changes pushed n8n toward native agents, the n8n Blog notes: modern models can work out the how from a goal, and users now expect to ask for an outcome rather than design the process first.
That expectation matters most when inputs differ every time, such as a Slack question about why a customer’s usage dropped.
The next step depends on the previous answer, so the process cannot be laid out in advance.
Inside the Agent Runtime: Tools, Workflows and Guardrails
Each agent bundles a model, plain-language instructions, channels and triggers, tools, skills, sub-agents, knowledge files, memory, and session history.
Memory holds the session conversation by default and can remember across sessions as well.
The design goal is to remove assembly overhead while preserving the ability to extend any agent with custom tools or workflows.
Drafts and published versions sit side by side, so teams can edit while the live agent continues serving production conversations.
Sessions and execution logs record inputs, tool calls, outputs, and errors per interaction.
The existing AI Agent node remains unchanged, so current automations continue to operate as before.
The Three Tool Classes Agents Can Invoke
Agents can use MCP servers, n8n integrations and nodes, or entire existing workflows as tools.
MCP servers offer the fastest setup by exposing a service’s full tool set at once, with per-tool exclusions available.
n8n nodes provide more control by predefining a specific action and fixed parameters.
Workflows become the highest-leverage tool because they execute exactly as built, step by step, without granting the agent raw access to underlying credentials.
- Get account context: pulls CRM data, checks contract status, and scores health.
- Add a note to the account: accepts an account ID and note, then writes only that note.
- Page on-call: posts urgent tickets to the on-call channel.
In that support example, the agent reads each ticket and decides whether to call a workflow.
What happens inside the workflow stays fixed, exactly as the team built it.
Credential Isolation and Approval Boundaries
The critical design detail is credential isolation.
When an agent calls a workflow, the agent holds access to the workflow, not the underlying CRM write credential.
That restriction shrinks the blast radius and gives teams a hard boundary around sensitive systems.
Approvals sit on top: a tool marked sensitive pauses the agent for an approve or reject decision before execution.
Per-tool credentials and n8n role-based access control govern who can edit, publish, or run an agent.
Agents Inside Workflows, Not Just Beside Them
The reverse path is also native.
A new ‘Message an Agent’ node lets a fixed workflow send data to a published agent and receive its answer as the next node input.
Because the agent carries its own instructions, tools, and memory, the node stays simple and updates propagate to every calling workflow.
This creates a bidirectional control relationship: sometimes the workflow is in charge with an agent as one step, and sometimes the agent is in charge with workflows as tools.
Why Execution-Based Economics and Self-Hosting Reshape the Automation Market
n8n has long billed by workflow execution rather than per task or operation.
Agent execution inherits the same model: one turn equals one execution, while tool calls to workflows and sub-agents do not consume separate executions.
Several pricing analyses in the automation space estimate that a 10-step workflow running 10,000 times per month can cut costs by 80 to 90 percent compared with per-task billing platforms.
That cost structure becomes more consequential as agentic workflows multiply the number of internal tool calls.
The platform’s fair-code licence and self-hosted deployment option remain a primary wedge for developer teams and regulated industries.
Compliance signals such as SOC 2 Type II and SOC 3 also become material when agents begin touching CRM, support, and finance systems.
Agent guardrails now span input/output filtering, PII and secret detection, jailbreak controls, and custom policy enforcement.
Model Context Protocol support means agents can absorb entire tool sets from compatible services, then narrow access through exclusions.
A rival platform comparison contends that n8n’s native approvals are fast for chat-channel decisions but that complex multi-step approval chains still require additional logic.
That caveat should be weighed against the release’s focus on simplicity, scoped tools, and workflow-level boundaries.
Agents are available today on n8n Cloud at the latest stable version, with self-hosted deployment requiring extra setup and Enterprise availability planned shortly.
The feature remains in preview, and the operative guidance is to test before publishing and keep approvals on sensitive actions.
The Agentic Control Point Moves Toward Operations
For automation teams building agentic systems that must stay explainable and cost-controlled, the control point has moved from model selection to tool and workflow governance. For teams turning agentic automation into production-grade content and SEO pipelines, programmatic SEO AI automation is how Andres SEO Expert approaches that shift — start the conversation here.
Frequently Asked Questions
What are n8n native Agents?
n8n native Agents are a first-class runtime that lets you describe a goal, attach a model, tools, workflows, and plain-language instructions, and let the agent work out the steps itself. They can run from Slack, a schedule, or any workflow call and carry their own memory and session history.
How do n8n Agents differ from fixed workflows?
Fixed workflows fit deterministic sequences such as lead enrichment and scoring, where every step is known in advance. n8n Agents fit dynamic tasks where the next step depends on the previous answer. The existing AI Agent node remains unchanged, so current automations continue to operate as before.
What tools can n8n Agents use?
Agents can use MCP servers, n8n integrations and nodes, or entire existing workflows as tools. MCP servers offer the fastest setup by exposing a service’s full tool set at once. n8n nodes provide more control by predefining a specific action and fixed parameters. Workflows are the highest-leverage tool because they execute exactly as built, step by step.
How does credential isolation work in n8n Agents?
When an agent calls a workflow, the agent holds access to the workflow, not the underlying credential. That restriction shrinks the blast radius and gives teams a hard boundary around sensitive systems. Approvals add another layer: a tool marked sensitive pauses the agent for an approve or reject decision before execution.
How are n8n Agents priced?
n8n bills by workflow execution rather than per task or operation, and agent execution inherits that model. One turn equals one execution, while tool calls to workflows and sub-agents do not consume separate executions. Pricing analyses estimate that a 10-step workflow running 10,000 times per month can cut costs by 80 to 90 percent compared with per-task billing platforms.
Can n8n Agents be used inside workflows?
Yes. A new Message an Agent node lets a fixed workflow send data to a published agent and receive its answer as the next node input. Because the agent carries its own instructions, tools, and memory, the node stays simple and updates propagate to every calling workflow. This creates a bidirectional relationship where either the workflow or the agent can be in charge.
Are n8n Agents available for self-hosting and production use?
Agents are available today on n8n Cloud at the latest stable version, while self-hosted deployment requires extra setup and Enterprise availability is planned shortly. The feature remains in preview, so the operative guidance is to test before publishing and keep approvals on sensitive actions. Guardrails include input/output filtering, PII and secret detection, jailbreak controls, and custom policy enforcement.
