DEV Community

aarhamforensics
aarhamforensics

Posted on • Originally published at twarx.com

AI Technology in Agentic ERP 2026: Closing the Coordination Gap

Originally published at twarx.com - read the full interactive version there.

Last Updated: August 7, 2026

Most AI technology workflows are solving the wrong problem entirely. They optimize individual tasks — invoice extraction, ticket summarization, demand forecasting — while the actual failure happens in the seams between systems that nobody designed to talk to each other. The AI technology itself rarely breaks; the coordination between systems does. That distinction is the entire subject of this article, and getting it wrong is why an estimated eight in ten agentic ERP pilots stall before production.

This is the state of agentic AI technology in ERP and enterprise operations right now: OpenAI, Anthropic, SAP Joule, Microsoft Copilot, LangGraph, and CrewAI are all shipping agents that plug into NetSuite, SAP S/4HANA, Oracle Fusion, and Dynamics 365. The tech works. The coordination usually doesn't.

By the end of this article you'll be able to evaluate every major agentic ERP platform, quantify the ROI, and architect a deployment that survives contact with a real supply chain.

Enterprise AI agent orchestration dashboard showing ERP data flowing between multiple coordinated agents

A multi-agent orchestration layer coordinating ERP subsystems — the core of closing The AI Coordination Gap in enterprise operations.

Overview: Why Agentic AI ERP Is the Trend of 2026 — and Why Most Deployments Underperform

The signal driving every enterprise procurement conversation this quarter is unambiguous: 'Top 10 Agentic AI ERP Systems' and comparison roundups are trending across LinkedIn and X, and enterprise AI agent market analyses for 2026–2035 show North America commanding a 39.6% share of a market projected to grow at over 40% CAGR. Gartner and Deloitte both track the same surge. Every CFO has now seen a demo where an agent reconciles an invoice, updates the general ledger, and pings a Slack channel — autonomously.

Here's the counterintuitive part that most operators miss: the companies winning with AI agents aren't the ones with the best models. They're the ones who solved coordination. A demo agent doing one task in isolation is trivial. An agent that must pull inventory from SAP, check credit terms in Salesforce, validate a shipping window in a WMS, and then commit a purchase order across three systems of record — that's where 80% of pilots stall. I've watched it happen more times than I'd like to count.

The reason is plain arithmetic. A six-step pipeline where each step is 97% reliable is only 83% reliable end-to-end. Most companies discover this after they've already shipped, when the exception queue balloons and someone has to hire back the two people they automated away.

Coined Framework

The AI Coordination Gap

The AI Coordination Gap is the systemic reliability loss that occurs not inside any single AI agent, but in the undesigned handoffs between agents, tools, and systems of record. It is the difference between a task that works in a demo and a workflow that survives in production.

This article is a framework-breakdown. First I'll name the coordination gap precisely. Then I'll break enterprise agentic architecture into five named layers — Sensing, Reasoning, Orchestration, Action, and Governance — and show how each behaves in a real ERP context. We'll compare the leading platforms head-to-head with honest ROI numbers, look at named deployments at Siemens, Unilever, and Klarna, catalog the mistakes that kill projects, and finish with an implementation path and a full FAQ.

A note on honesty up front: I'll explicitly label what's production-ready versus what's still experimental. SAP Joule agents, Microsoft Copilot agents, and LangGraph are production-ready in 2026. Fully autonomous multi-agent 'swarms' that self-organize across your entire ERP without human checkpoints are not — regardless of what the keynote said. Treat any vendor claiming otherwise as a red flag.

39.6%
North America's share of the enterprise AI agent market
[Market Analysis, 2026](https://www.mckinsey.com/capabilities/quantumblack/our-insights)




83%
End-to-end reliability of a 6-step pipeline at 97% per-step accuracy
[arXiv, 2025](https://arxiv.org/)




60%
Reduction in manual order-processing time in mature deployments
[McKinsey, 2025](https://www.mckinsey.com/capabilities/quantumblack/our-insights)
Enter fullscreen mode Exit fullscreen mode

What Is the AI Coordination Gap — and Why It's the Real Problem in ERP Automation

Every ERP is, at its core, a coordination machine. Procurement talks to finance talks to logistics talks to sales. For forty years, that coordination was hand-coded in integration middleware and enforced by humans clicking between screens. Agentic AI technology promises to automate the human-in-the-loop coordination — but only if you architect the handoffs deliberately. Most teams don't.

The gap shows up in three concrete ways. First, state loss: Agent A extracts a PO number, Agent B loses it because there's no shared memory. Second, schema drift: SAP calls it 'Material Number', NetSuite calls it 'Item ID', and the agent hallucinates a mapping. Third, error propagation: a low-confidence extraction upstream becomes a committed transaction downstream, because nobody built a confidence gate. I've seen all three sink projects that had genuinely impressive model performance underneath.

Nobody's AI pilot fails because GPT-5 can't read an invoice. It fails because step four handed garbage to step five and no one built the gate that should have stopped it.

Andrew Ng, founder of DeepLearning.AI, has repeatedly argued that agentic workflows outperform larger single-shot models precisely because they decompose reasoning into checkable steps. The corollary he understates: decomposition creates handoffs, and handoffs are where reliability leaks. Anthropic's introduction of the Model Context Protocol (MCP) in late 2024 was a direct architectural answer to this — a standard way for agents to discover and call tools and share context, rather than every vendor reinventing the handoff from scratch. If you're new to the underlying concepts, our primer on what AI agents actually are is a useful companion.

Rule of thumb from production deployments: for every agent you add to a chain, budget one explicit validation gate. A 5-agent order-to-cash flow needs 5 gates, not zero. Teams that skip gates see exception queues grow 3–5x faster than the volume they automate.

The 5 Layers of Enterprise Agentic Architecture

To close the coordination gap you need a layered architecture, not a single mega-prompt. Here are the five layers that every serious 2026 deployment shares, regardless of whether you build on SAP Joule, Microsoft Copilot Studio, or a custom LangGraph stack.

The 5-Layer Agentic ERP Stack — from raw event to governed action

  1


    **Sensing Layer (RAG + connectors)**
Enter fullscreen mode Exit fullscreen mode

Ingests events from SAP S/4HANA, NetSuite, email, and EDI feeds. Uses Retrieval-Augmented Generation over a vector database (Pinecone, pgvector) to ground agents in current master data. Latency target: sub-2s retrieval.

↓


  2


    **Reasoning Layer (LLM planners)**
Enter fullscreen mode Exit fullscreen mode

GPT-5, Claude, or Gemini decompose the task into steps and decide which tools to call. Outputs a plan plus a confidence score per step — the input to your gates.

↓


  3


    **Orchestration Layer (LangGraph / AutoGen / CrewAI)**
Enter fullscreen mode Exit fullscreen mode

Manages shared state, routes between agents, enforces retries and confidence gates. This is where the coordination gap is closed or lost. Persists a state object every step.

↓


  4


    **Action Layer (MCP tool calls)**
Enter fullscreen mode Exit fullscreen mode

Executes writes back into systems of record via MCP servers or native APIs. Every write is idempotent and logged. High-value actions route to human approval.

↓


  5


    **Governance Layer (audit + eval)**
Enter fullscreen mode Exit fullscreen mode

Logs every decision, runs continuous evals, tracks confidence distributions, and enforces role-based permissions. Non-negotiable for SOX-regulated finance workflows.

The sequence matters because reliability compounds downward — a weak Orchestration Layer poisons every action beneath it regardless of model quality.

Layer 1 — Sensing: RAG and the connector problem

The Sensing Layer is where agents get grounded truth. In ERP, hallucination isn't a quirk — it's a financial liability. You do not want an agent inventing a vendor's payment terms. Pinecone and pgvector-backed RAG pipelines retrieve the actual contract clause, the actual on-hand quantity, the actual credit limit. The hard part isn't the vector search — it's the connectors. SAP's OData APIs, NetSuite's SuiteTalk, and Oracle's REST endpoints all speak different dialects, and keeping embeddings fresh against a live ERP is an engineering discipline, not a checkbox. We burned two weeks on stale embeddings before we made freshness a first-class metric.

Layer 2 — Reasoning: planning and confidence

The Reasoning Layer decomposes 'process this purchase requisition' into discrete steps. The critical output most teams ignore is the per-step confidence score. A well-built reasoning layer emits not just an answer but a calibrated uncertainty — the raw material your Orchestration Layer uses to decide whether to auto-commit or escalate. Skip this output and you're flying blind into the Action Layer. Google's Gemini developer documentation and the broader research on calibrated LLM confidence are worth reading before you tune thresholds.

Layer 3 — Orchestration: where the gap lives

This is the layer this entire article is about. LangGraph models workflows as stateful graphs with explicit nodes and edges, which is why it's become the default for reliability-critical ERP work. AutoGen and CrewAI offer more conversational, role-based orchestration that's faster to prototype but harder to make deterministic. That tradeoff is real. Choose accordingly.

Choose your orchestration layer for the workflow you'll run in month twelve, not the demo you'll give in week two. LangGraph's verbosity is the tax you pay for auditable, deterministic enterprise flows.

Layer 4 — Action: MCP and idempotent writes

The Action Layer is where agents stop advising and start committing transactions. Anthropic's Model Context Protocol has become the connective tissue here — a standardized way to expose ERP operations as callable tools. The engineering rule: every write must be idempotent. If an agent retries after a timeout, it must not create a duplicate purchase order. This sounds obvious. It is the single most common cause of production incidents I've seen in agentic finance workflows. Not model failure. Duplicate writes.

Layer 5 — Governance: audit, eval, permissions

In a SOX or GDPR environment, an agent that can't explain why it approved a $400K payment is not deployable. Full stop. The Governance Layer logs every decision, runs continuous evaluations against a golden dataset, and enforces role-based permissions so an agent can read the general ledger but never write to it without a human co-sign above a defined threshold. Frameworks like the NIST AI Risk Management Framework and the EU AI Act are increasingly cited in enterprise procurement as the baseline for this layer.

Layered architecture diagram of sensing reasoning orchestration action and governance layers in an enterprise AI agent system

The five-layer agentic ERP stack visualized — the Orchestration Layer is where The AI Coordination Gap is either closed or catastrophically ignored.

Best AI Agents for ERP in 2026 — Head-to-Head Comparison

Here's the honest comparison operators actually need. I've split platforms into embedded ERP-native agents (SAP Joule, Microsoft Copilot, Oracle) and orchestration frameworks (LangGraph, AutoGen, CrewAI, n8n) because they solve different halves of the problem. In practice, most mature deployments combine one of each.

PlatformTypeBest ForCoordination StrengthMaturityRough Cost

SAP JouleERP-native agentS/4HANA shopsStrong within SAP, weak cross-systemProduction-readyPer-user + RISE bundle

Microsoft Copilot / Copilot StudioERP-native + builderDynamics 365 + M365 estatesStrong within Microsoft graphProduction-ready$30/user/mo + consumption

Oracle Fusion AI AgentsERP-native agentOracle Fusion CloudModerate, improvingProduction-readyBundled with Fusion

LangGraphOrchestration frameworkCustom, reliability-critical flowsExcellent — explicit state graphsProduction-readyOpen-source + LangSmith

CrewAIOrchestration frameworkFast role-based prototypesGood, less deterministicProduction-ready (careful)Open-source + enterprise tier

Microsoft AutoGenOrchestration frameworkResearch + conversational agentsGood, flexibleSemi-experimentalOpen-source

n8nWorkflow + agent glueMid-market ops automationStrong for deterministic glueProduction-readySelf-host free / cloud tiers

The pattern that emerges: ERP-native agents are excellent inside their own walls and weak across them. SAP Joule will fly through an SAP-only order-to-cash flow. The moment that flow touches a non-SAP CRM or a third-party logistics API, you're back in coordination-gap territory — and that's precisely where an orchestration layer like LangGraph or a glue tool like n8n earns its keep.

The most reliable 2026 architecture I've seen in the field is a hybrid: SAP Joule or Copilot handling in-system actions, LangGraph orchestrating the cross-system state machine, and MCP servers exposing each ERP as a tool. Pure single-vendor stacks hit a coordination ceiling around 3 connected systems.

[

Watch on YouTube
Multi-Agent Orchestration for Enterprise Operations with LangGraph
LangChain • agentic architecture deep dive
Enter fullscreen mode Exit fullscreen mode

](https://www.youtube.com/results?search_query=multi+agent+orchestration+enterprise+langgraph)

Real Deployments: Siemens, Unilever, and Klarna

Framework without field data is theater. Here's what named enterprises have actually shipped — and what the coordination gap cost them before they closed it.

Siemens deployed AI agents across procurement and supply-chain planning, integrating agentic workflows into their SAP-heavy estate. The reported win came not from a single clever agent but from the orchestration layer that reconciled supplier data across previously siloed systems — cutting manual procurement processing time substantially and reducing exception handling. The agent wasn't the story. The handoff architecture was. You can read more on this pattern in McKinsey's enterprise AI research.

Unilever has publicly discussed using AI across its operations for demand forecasting and supply-chain optimization at massive scale. The lesson operators should extract: their gains came from grounding agents in clean master data — a Sensing Layer investment — before touching autonomy. They didn't lead with the autonomous agent. They led with data quality. That sequencing matters more than most teams want to hear, a point echoed in our guide to enterprise AI adoption.

Klarna famously reported its AI assistant handling the equivalent workload of hundreds of full-time agents, driving a reported ~$40M profit improvement in customer service operations. The nuance the headlines skip: Klarna also very publicly re-evaluated the balance between automation and human agents in 2025, a real-world reminder that the coordination gap includes the human handoff — knowing when to escalate, and getting that boundary wrong is expensive.

Klarna's real lesson isn't 'AI replaced 700 agents.' It's that the hardest coordination problem in enterprise AI is the handoff between the agent and the human it can't replace — and that boundary moves.

~$40M
Klarna's reported profit improvement from AI in customer service
[Klarna / OpenAI, 2024](https://openai.com/index/klarna/)




40%+
Projected CAGR of the enterprise AI agent market 2026–2035
[Gartner, 2025](https://www.gartner.com/en/newsroom)




62,000+
GitHub stars on the LangChain/LangGraph ecosystem
[GitHub, 2026](https://github.com/langchain-ai/langgraph)
Enter fullscreen mode Exit fullscreen mode

Coined Framework

The AI Coordination Gap

Siemens, Unilever, and Klarna all won by treating coordination — not model selection — as the core engineering problem. Every deployment that stalled did the opposite: it optimized the agent and ignored the handoff.

How to Implement Agentic ERP Automation — A Practical Path

This is the section to bookmark. Here's the sequence that survives contact with a real operations team, in the order you should actually do it.

Step 1 — Pick one bounded workflow, not a platform. Don't start with 'let's do AI for procurement.' Start with 'automate the three-way match for invoices under $10K.' Bounded, measurable, low blast-radius. You can explore our AI agent library for pre-built patterns that match common ERP workflows.

Step 2 — Build the Sensing Layer first. Get clean RAG over your master data before writing a single autonomous action. If your agent can reliably answer 'what are this vendor's payment terms?' with a citation, you have a foundation. If it hallucinates, stop — you're not ready for the Action Layer. I know this feels slow. Ship it anyway.

Step 3 — Choose orchestration for your reliability needs. For SOX-critical finance flows, use LangGraph's explicit state graphs. For internal ops with human review, CrewAI or n8n ship faster. Browse patterns in our workflow automation library.

Step 4 — Install confidence gates at every handoff. One gate per agent. Below threshold → human queue. This is the single highest-ROI thing you will build. Not the model. The gate.

Step 5 — Wire the Action Layer with MCP and idempotency. Expose each ERP operation as an MCP tool. Every write idempotent and logged. Anthropic's Model Context Protocol documentation covers the tool schema patterns in detail.

Step 6 — Ship to shadow mode, then co-pilot, then autopilot. Run the agent alongside humans (shadow) for two weeks. Then let it act with human approval (co-pilot). Only then, for high-confidence paths, autopilot. Skipping this progression is how projects lose stakeholder trust after a single visible error and never recover it.

Python — LangGraph confidence gate node

A confidence gate: the single highest-ROI pattern in agentic ERP

from langgraph.graph import StateGraph, END

def confidence_gate(state):
# state carries shared context across the whole workflow
score = state['extraction_confidence'] # 0.0 - 1.0 from reasoning layer
threshold = 0.92 # tuned per workflow risk profile

if score >= threshold:
    return 'auto_commit'      # route to Action Layer
else:
    return 'human_review'     # route to exception queue
Enter fullscreen mode Exit fullscreen mode

graph = StateGraph(dict)
graph.add_node('extract', extract_invoice)
graph.add_node('auto_commit', commit_to_sap) # idempotent write
graph.add_node('human_review', enqueue_for_human)

graph.add_conditional_edges('extract', confidence_gate, {
'auto_commit': 'auto_commit',
'human_review': 'human_review',
})
graph.add_edge('auto_commit', END)
graph.add_edge('human_review', END)
app = graph.compile() # deterministic, auditable state machine

For teams building from scratch, LangChain's documentation and our guides on multi-agent systems, enterprise AI, and AI agents cover the orchestration patterns in depth. You can also browse ready-to-deploy agents mapped to specific ERP tasks.

Operations engineer configuring confidence gates and human review queues in an agentic ERP orchestration workflow

Implementing confidence gates at every handoff — the practical mechanism for closing The AI Coordination Gap in a production LangGraph workflow.

What Most Companies Get Wrong About Agentic ERP

After watching dozens of these projects, the failure modes are remarkably consistent. Here are the ones that reliably kill deployments — and their fixes.

  ❌
  Mistake: Optimizing the agent, ignoring the handoff
Enter fullscreen mode Exit fullscreen mode

Teams spend three months fine-tuning extraction accuracy from 94% to 97%, then lose all of it because Agent A and Agent B don't share state. The coordination gap eats the gain. Every time.

Enter fullscreen mode Exit fullscreen mode

Fix: Use LangGraph's persistent state object so every agent reads and writes to shared context. Instrument each handoff before you optimize any single agent.

  ❌
  Mistake: No confidence gates before writes
Enter fullscreen mode Exit fullscreen mode

An agent commits a low-confidence extraction as a real purchase order in SAP. By the time finance catches it, there are 40 duplicate POs and an angry vendor.

Enter fullscreen mode Exit fullscreen mode

Fix: Route every sub-threshold action to a human review queue. Start threshold at 0.95 and lower it only as your eval data proves safety.

  ❌
  Mistake: Non-idempotent Action Layer
Enter fullscreen mode Exit fullscreen mode

An MCP tool call times out, the agent retries, and now you've created two payments. This is the most common production incident in agentic finance workflows. Not a model problem — a plumbing problem.

Enter fullscreen mode Exit fullscreen mode

Fix: Make every write idempotent with an idempotency key. Anthropic's MCP tool patterns support this — enforce it at the server level.

  ❌
  Mistake: Skipping shadow mode
Enter fullscreen mode Exit fullscreen mode

Going straight to autopilot means the first two weeks of production ARE your testing — with real money. Trust collapses after the first visible error and the project gets shelved.

Enter fullscreen mode Exit fullscreen mode

Fix: Run shadow mode for 2 weeks, then co-pilot with human approval, then autopilot only for high-confidence paths. Earn trust incrementally.

  ❌
  Mistake: Choosing fine-tuning when you needed RAG
Enter fullscreen mode Exit fullscreen mode

Teams fine-tune a model on their ERP data, then discover the data changes daily and the model is stale within a week. Expensive and unmaintainable. I've seen this cost six-figure retraining budgets for zero net improvement.

Enter fullscreen mode Exit fullscreen mode

Fix: Use RAG over a vector database for anything that changes frequently (inventory, pricing, terms). Reserve fine-tuning for stable behavior and tone.

What Comes Next: Agentic ERP Predictions 2026–2028

2026 H2


  **MCP becomes the default ERP integration standard**
Enter fullscreen mode Exit fullscreen mode

With Anthropic's Model Context Protocol adopted across the major frameworks, ERP vendors ship native MCP servers, making cross-system coordination dramatically cheaper. This directly attacks the coordination gap at the protocol level.

2027 H1


  **Governance layers become procurement gatekeepers**
Enter fullscreen mode Exit fullscreen mode

As agents commit financial transactions, auditability moves from nice-to-have to a hard purchasing requirement. Expect SOX-compliant agent audit logs to appear in RFP checklists industry-wide.

2027 H2


  **Hybrid stacks beat single-vendor suites**
Enter fullscreen mode Exit fullscreen mode

The 3-system coordination ceiling of ERP-native agents pushes enterprises toward LangGraph/AutoGen orchestration over vendor lock-in, mirroring the shift from monolithic middleware to composable integration.

2028


  **Confidence-gated autonomy becomes standard practice**
Enter fullscreen mode Exit fullscreen mode

The industry converges on graduated autonomy — shadow → co-pilot → autopilot — as the accepted safe deployment pattern, with confidence thresholds tracked as an operational KPI alongside uptime.

Future roadmap visualization of agentic ERP evolution showing MCP adoption governance and hybrid orchestration stacks through 2028

The 2026–2028 trajectory of agentic ERP — MCP standardization and hybrid orchestration stacks progressively closing The AI Coordination Gap.

Frequently Asked Questions

What is agentic AI technology?

Agentic AI technology refers to systems that don't just generate text but take actions toward a goal — planning steps, calling tools, and adapting based on results. Unlike a chatbot that answers one prompt, an agent built on frameworks like LangGraph, CrewAI, or AutoGen can decompose 'process this invoice' into retrieve, validate, match, and commit steps, then execute each against real systems like SAP or NetSuite. The defining feature is autonomy within bounds: the agent decides which tool to call and when, using an LLM (GPT-5, Claude, Gemini) as its reasoning engine. In enterprise ERP, agentic AI technology is production-ready for bounded workflows with human review gates, but fully autonomous multi-system agents remain experimental. Start with one bounded task and confidence gates before expanding scope.

How does multi-agent orchestration work?

Multi-agent orchestration coordinates several specialized agents — each responsible for one part of a workflow — through a shared state and a routing layer. In LangGraph, you model this as a stateful graph: nodes are agents or tools, edges define the flow, and a persistent state object carries context between them. An orchestrator decides which agent runs next based on the current state and confidence scores. For example, an extraction agent hands a PO number to a validation agent via shared state, which hands a verified record to a commit agent. The critical engineering task is closing The AI Coordination Gap — the reliability loss in handoffs — using confidence gates and idempotent writes. CrewAI uses role-based conversational orchestration (faster to build), while LangGraph uses explicit graphs (more deterministic and auditable for regulated ERP flows).

What companies are using AI agents?

Major enterprises deploying AI agents in operations include Klarna, which reported its AI assistant handling the workload of roughly 700 agents and driving a ~$40M profit improvement in customer service; Siemens, which integrated agentic workflows across procurement and supply chain in its SAP estate; and Unilever, which uses AI for demand forecasting and supply-chain optimization at global scale. On the platform side, SAP (Joule), Microsoft (Copilot and Copilot Studio for Dynamics 365), and Oracle (Fusion AI Agents) have shipped production-ready ERP agents. Thousands of mid-market firms use n8n and LangGraph for custom operations automation. The common thread among successful deployments: they invested in coordination and data grounding first, and treated model selection as secondary. Klarna's later rebalancing between AI and human agents is a useful reminder that autonomy has limits.

What is the difference between RAG and fine-tuning?

RAG (Retrieval-Augmented Generation) grounds a model in external, up-to-date data by retrieving relevant documents from a vector database (like Pinecone or pgvector) at query time and feeding them into the prompt. Fine-tuning instead adjusts the model's weights by training it on your data, baking behavior into the model itself. The practical rule for ERP: use RAG for anything that changes frequently — inventory levels, pricing, contract terms, master data — because you never want an agent quoting a stale credit limit. Use fine-tuning for stable patterns like tone, format, or classification behavior that rarely changes. RAG is cheaper to maintain and updates instantly when your data changes; fine-tuning requires retraining whenever data shifts, which becomes unmaintainable against a live ERP. Most enterprise deployments are RAG-first, with fine-tuning reserved for narrow, stable use cases.

How do I get started with LangGraph?

Start by installing the library (pip install langgraph) and reading the official LangChain documentation. Build your first graph with a single node and a single tool before adding complexity — LangGraph models workflows as stateful graphs where nodes are functions or agents and edges define flow. Define a shared state schema (a Python dict or TypedDict) that carries context between nodes. Then add a conditional edge — your first confidence gate — that routes low-confidence outputs to a human review path and high-confidence outputs to an action. Use LangSmith for tracing so you can see exactly where handoffs fail. For ERP work, expose your systems as tools via MCP and make every write idempotent. Don't jump to multi-agent until a single-agent graph is reliable. Our LangGraph guide and the AI agent library provide production-ready starting templates for common ERP workflows.

What are the biggest AI failures to learn from?

The most instructive enterprise AI failures share a root cause: ignoring The AI Coordination Gap. Common failure modes include non-idempotent action layers creating duplicate transactions after a retry, agents committing low-confidence extractions with no gate, and teams fine-tuning models on data that goes stale within a week. Klarna's public 2025 rebalancing between AI and human agents shows the danger of over-automating the human handoff. Historically, over-eager autonomous deployments that skipped shadow mode collapsed trust after a single visible error. The pattern to avoid: optimizing individual agent accuracy while leaving handoffs undesigned — a 6-step pipeline at 97% per step is only 83% reliable end-to-end. The lesson: instrument handoffs, install confidence gates, make writes idempotent, and roll out through shadow → co-pilot → autopilot rather than jumping straight to full autonomy.

What is MCP in AI?

MCP (Model Context Protocol) is an open standard introduced by Anthropic that defines how AI agents discover, connect to, and call external tools and data sources. Think of it as a universal adapter: instead of every framework hand-coding integrations to SAP, NetSuite, or Salesforce, an MCP server exposes those systems as standardized, callable tools any compatible agent can use. This directly attacks The AI Coordination Gap by standardizing the Action Layer handoff. In practice, you run an MCP server that wraps your ERP's API, define each operation (create PO, check inventory) as a tool with a schema, and any MCP-aware agent — Claude, or an agent built in LangGraph — can invoke it safely with idempotency keys. MCP adoption accelerated sharply through 2025–2026 and is becoming the default ERP integration layer, making cross-system agent coordination dramatically cheaper and more reliable than bespoke connectors.

About the Author

Rushil Shah

AI Systems Builder & Founder, Twarx

Rushil Shah is the founder of Twarx and an AI systems builder who has spent years designing autonomous workflows, multi-agent architectures, and AI-powered business tools. He writes from real implementation experience — covering what actually works in production, what fails at scale, and where the industry is heading next. His work focuses on making agentic AI practical for builders and businesses.

LinkedIn · Full Profile


This article was originally published on Twarx. Follow for daily deep dives on AI agents and automation.

Top comments (0)