SAP makes n8n the default orchestration layer for its AI agents
SAP has embedded n8n inside Joule Studio, the agent-building environment at the center of its Autonomous Enterprise platform. The multi-year commercial agreement makes n8n the native workflow orchestration layer for connecting SAP's 200+ AI agents and 50 domain-specific assistants to non-SAP systems.
The gap n8n fills
SAP's agents can automate financial close, reconcile invoices, and resolve procurement exceptions. But they cannot natively talk to the thousands of non-SAP systems that every enterprise runs. The average large company operates between 200 and 400 software applications. SAP covers dozens. The rest are CRMs, ticketing platforms, communication tools, data warehouses, custom internal APIs, and two decades of SaaS procurement debris.
n8n connects them. It offers a visual workflow canvas where developers drag, drop, and wire together integrations between systems. It supports more than 1,000 integrations, over half built and maintained by technology partners, and can call any API with a generic HTTP node. Workflows can be triggered by events, scheduled on timers, or invoked by AI agents that need to take action in external systems.
Crucially, n8n runs on SAP's Business Technology Platform cloud infrastructure. Data stays inside the customer's SAP environment—it does not leave. This is a key differentiator for enterprises with strict data sovereignty requirements.
The technical details
SAP customers building agents in Joule Studio can use n8n to connect those agents to systems outside the SAP ecosystem without writing custom integration code. General availability is planned for Q3 2026. The partnership also supports Cursor and Claude Code inside Joule Studio, but n8n is the workflow orchestration layer—the piece that turns an AI agent's decision into an action across multiple systems.
For developers, this means you can now build an agent in Joule that, for example, detects a supply chain delay, then uses n8n to:
// Pseudocode for an n8n workflow triggered by a Joule agent
const workflow = {
trigger: { type: 'webhook', endpoint: '/joule-event' },
nodes: [
{ type: 'HTTP Request', url: 'https://slack.com/api/chat.postMessage', method: 'POST', headers: { Authorization: 'Bearer ${SLACK_TOKEN}' }, body: { channel: '#supply-chain', text: 'Delay detected in order ${orderId}' } },
{ type: 'Jira', operation: 'createIssue', fields: { project: 'SUPPLY', summary: 'Order delay: ${orderId}', description: 'Automated from SAP Joule' } },
{ type: 'Email', to: 'procurement@company.com', subject: 'Supply chain alert', text: 'Order ${orderId} delayed. Ticket created.' }
]
};
This is a simplified example, but it illustrates the power: one event triggers a sequence of actions across multiple systems, with error handling and audit trails built in.
The company behind n8n
Jan Oberhauser started n8n in 2019 as a side project in Berlin because the workflow automation tools he used at work were too expensive and too closed. n8n operates under a fair-code license—source code is visible, self-hosting is allowed, modification is permitted, but commercial redistribution without a license is restricted. It sits between open source and proprietary.
The model has produced 183,000 GitHub stars, making n8n one of the most-starred JavaScript projects. It has over 230,000 active users, more than 3,000 enterprise customers including Microsoft, KPMG, Vodafone, Delivery Hero, Volkswagen, Decathlon, and Twitch, and annual recurring revenue of $40 million growing at 10x year-on-year. Total funding is $240 million, with a Series C led by Accel that included backing from Nvidia.
The market context
n8n competes with Zapier (7,000+ integrations, AI agent capabilities) and Make (visual workflow builder). Both are closed-source, cloud-only. Neither can be self-hosted. Neither exposes source code. In a market where enterprises demand auditability, data sovereignty, and the ability to run AI workflows inside their own infrastructure, n8n's fair-code model is a structural advantage.
The SAP partnership changes competitive dynamics. Zapier and Make serve the long tail of SMBs connecting SaaS applications. n8n now has a distribution channel into the largest enterprises on the planet through the software they already run. A procurement officer at Volkswagen does not evaluate workflow automation tools—they use what SAP provides inside Joule. n8n just became the default.
What this means for developers
If you're building AI agents for enterprise customers, n8n is now a first-class citizen in the SAP ecosystem. You can prototype workflows locally with the open-source version, then deploy them on SAP's infrastructure. The fair-code license means you can inspect every line of code and customize nodes for your specific needs.
For those already using n8n, this deal validates your choice. The tool that 1.7 million developers adopted bottom-up is now being distributed to 300,000 enterprises by the company that runs their back office.
The European angle
n8n is now Germany's most valuable AI company and one of Europe's most valuable startups. The $5.2 billion valuation with only $40 million in annual revenue reflects the market's judgement of what n8n's revenue will become once the SAP distribution channel is fully operational. Europe's scaleup ecosystem faces structural growth barriers—fragmented markets, talent competition, absence of hyperscale distribution channels. n8n's SAP deal is a European answer to a European problem.
Next steps for developers
- If you haven't tried n8n, spin up the open-source version locally:
docker run -it --rm --name n8n -p 5678:5678 n8nio/n8n - Explore the 1,000+ integrations and build a workflow connecting SAP to Slack, Jira, or your custom API.
- Watch for general availability in Q3 2026—start planning how to integrate n8n into your enterprise agent architecture.




