← Back to Insights

Insight

The Loop Was The Work

Ariel Agor
The Loop Was The Work

Listen · Read by Leo · click any word to jump

0:00 / · loading…

On July 28, 2026, the Model Context Protocol maintainers shipped the biggest revision to the spec since launch. The new version drops the bidirectional stateful transport and moves to a stateless HTTP model, so tool servers can run on ordinary serverless infrastructure. AWS shipped AgentCore Gateway support the same week. CData published an enterprise explainer of the release five days later. Trade press covered the news as an inflection point for agent deployment.

That change matters. It also misses the story.

The story is that the largest single reason enterprise AI pilots die in the gap between demo and production has almost nothing to do with the transport layer or the model. The MIT Project NANDA report from summer 2025, still the most-cited enterprise study a year later, calls it the learning gap. Ninety-five percent of generative AI pilots deliver no measurable return on the P&L. The five percent that cross the divide share one trait, and it is not budget or team size. They built the surrounding loop before they shipped the model.

The demo you were sold is not what ships

A pilot is a curated event. Someone picks the data, picks the questions, picks the users, and picks the window of time. The model gets asked things it was likely to answer well. The people testing it were briefed. Success in a pilot means the model behaved on a track built for it.

Production is the track being ripped up under the model's feet. The auth token expires at 3 a.m. The upstream API returns a 502 that the SDK translates into an empty string. The user asks in Portuguese. The internal database has three rows with the same customer name and no primary key. The compliance team wants an audit trail of every tool call. The finance team wants an itemized bill. The legal team wants the ability to freeze the whole thing in five seconds without shutting down the rest of the company.

None of that was in the pilot. It was left out because a pilot that included it would have failed, and the pilot's job was to succeed.

The five percent of enterprises that get past pilot purgatory understand this in their bones. They spend the pilot budget on the surrounding wire. The model is a small line item.

What actually breaks in the translation layer

The July 2026 wave of pilot-to-production analyses, from Wizr.ai's breakdown to CIO's cover story on shadow operations, points to the same set of failures every time. They are boring failures. They are also the ones that decide whether a project ships.

Authentication that survives token rotation. Rate limiting that queues gracefully instead of crashing. Retries with exponential backoff on transient errors, and hard failure on permanent ones. Idempotency keys on every tool call, so a retried action does not double-charge a customer. Structured logging of every model input, every tool call, every model output, in a format the security team can actually query. A rollback path when the model does the wrong thing on Tuesday morning at scale. A kill switch that is faster to hit than to explain.

That list is not short and none of it was in the demo.

The MIT NANDA report puts a specific name on the miss. They call it the mismatch between consumer AI expectations and enterprise tool capabilities. Every executive in the room has used ChatGPT for two years. They know how a chatbot is supposed to feel. What they do not know is that the felt-simplicity of a consumer chatbot sits a hundred engineers deep, spread across authentication, moderation, observability, memory, and evaluation. When they buy an enterprise AI tool from a vendor and stand it up in a pilot, they see the shallow surface, and they think the wire behind it will come for free.

It does not come for free. It is the work.

The overlay pattern is the enemy

The Wizr.ai analysis from mid-July, echoed by Cognitute's production-gap report, puts the second failure mode in sharp focus. Most enterprise pilots deploy AI as an overlay on an existing process. The pilot bolts a copilot onto the ticketing tool without changing how tickets get routed or closed. The old process keeps running. The AI is a passenger.

This looks like the safe option to a leadership team that does not want to risk the business on a first attempt. In practice it guarantees the AI never earns its keep, because every measurable outcome still runs through the pre-AI process. The AI shortens a step and leaves the process intact. The step was five percent of the total cycle time. Payback never arrives.

The five percent that crosses the divide picks a workflow and rebuilds it. Here the AI runs the loop, and the humans design its failure paths.

Rebuilding is scary because it exposes political ownership. The overlay pattern lets everyone keep their job description. The rebuilt workflow forces a conversation about who owns what when the AI is doing the middle sixty percent of the work. That conversation is why so many pilots die at the executive review even when the metrics were fine. Nobody wanted to have it.

Moving an AI pilot to production is a workflow decision

The phrase gets treated as a technical migration. Buy a bigger VM. Wire up the CI/CD. Sign an enterprise contract with the vendor. Turn it on for a wider audience.

Real migration looks nothing like that. It is a workflow decision. Who runs the process now? What steps did the humans keep? What steps did the AI absorb? What is the escalation path when the AI is uncertain? Who signs off on outputs? What is the sampling rate for review?

Most companies never answer those questions. They stand up the pilot for a controlled audience, watch the metrics, and then try to widen the audience without touching the process. The widening breaks it. The metrics stop reflecting what the AI is doing because the AI is now doing something the pilot never rehearsed.

Anthropic's note on production agent lessons, published on the ZenML LLMOps database, said the quiet part clearly. The bottleneck for most production agent systems is the infrastructure around the model. Model capability is rarely what holds a rollout back. The eval harness. The observability layer. The permission scoping. The memory system. The retry policy. The tool schema hardening. None of that ships in a model release.

Evaluation is the missing organ

The single most consistent pattern in companies that cross the divide is that they build an evaluation harness before they scale the pilot. Not after. Before.

Arize AX, LangSmith, Braintrust, Langfuse, Weights & Biases Weave, and Comet Opik all shipped major revisions to their production eval platforms in the first half of 2026. LangSmith's latest release added production replay against live traces, so a team can ship a new prompt behind a flag, replay real user traffic against the change, and catch regressions before the next percent of users sees them. Braintrust added trace-level scorers that run continuously against production output samples. Arize published a twelve-metric framework distilled from a hundred deployments.

The pattern is uniform. Enterprise AI is moving from ship-and-hope to ship-with-a-harness. The harness is what tells you the change you made this morning did not silently degrade the answer for a subset of users. Without it, every deployment is a controlled explosion, and every rollback is a fire drill.

The uncomfortable truth is that the harness is more work than the model. The harness is a labeled dataset, a scoring function, an offline evaluation pipeline, an online sampling policy, a dashboard, and a review workflow with humans who look at the failures. That is a small team, working for months, before the AI ever sees a paying user. Vendors will happily sell you the model. They will not build the harness for you. The harness is where your business logic lives.

MCP 2026-07-28 is the plumbing that lets the loop scale

The Model Context Protocol update on July 28 matters because it makes the surrounding loop cheap to distribute. In the old stateful protocol, an agent had to hold a persistent session with every tool it touched. Every tool server had to manage session state, coordinate reconnection, and route messages back to the right client. This did not scale on ordinary cloud infrastructure and it did not survive process restarts.

The new spec drops the stateful transport. Tool calls are HTTP requests that any load balancer can route to any healthy backend. AgentCore Gateway on AWS, deployed on Lambda, can now serve MCP tool calls at scale without a persistent connection. The extensions framework adds MCP Apps for server-rendered UI and a Tasks extension for long-running work. Authorization aligns with OAuth 2.0 and OpenID Connect, which is the language your identity team already speaks.

For a company moving from pilot to production, this is the difference between a Rube Goldberg machine of duct-taped connectors and a real infrastructure pattern. The security team can review the auth flow. The platform team can put the tool servers behind the same load balancer as the rest of the API estate. The audit team can log every call because every call is an HTTP request.

None of that fixes the pilot's original sin. It removes the excuse that the plumbing was too experimental to production-harden. The plumbing is now real. The workflow decision is on the executive.

Shadow AI is what happens when you skip the harness

The July 29 Digital Thought Disruption analysis and the August CIO cover story both put a number on the cost of ducking this question. Three million agents are running inside corporations today. Fewer than half are actively monitored. The rest are shadow agents, running on employee laptops, in browser extensions, on personal API keys someone billed to a corporate card six months ago.

Shadow AI is what a workforce does when the sanctioned pilot never made it to production and they still have jobs to do. Employees will not wait for the twelve-month enterprise rollout. They will paste customer data into a consumer chatbot, get an answer, and move on. The security team will find out when the vendor has a breach and their customer records appear on a paste site.

Microsoft took Agent 365 out of preview in early August specifically to give large customers a discovery tool for shadow agents. That is a symptom, not a cure. The cure is a production AI that people actually want to use, which means an AI that works on their real inputs, in their real workflow, without breaking. Which means the loop had to be built.

The single accountable owner problem

There is a governance pattern that predicts survival more accurately than any of the technical patterns. Pilots have a committee. Production has an owner.

A pilot is cross-functional by design. The data science team owns the model. Platform owns the deployment. The business unit owns the use case. Legal reviews the contract. Security reviews the risk. Everyone attends the weekly. Everyone approves the shipping decision.

Production cannot run this way. When the model returns a wrong answer to a paying customer at 3 a.m., a committee cannot roll back the model. A committee cannot rotate the auth key. A committee cannot page a human. Somebody has to have the pager, and somebody has to have the authority to decide.

The single accountable owner problem is where most large enterprises break. They stand up a pilot with a committee, the pilot works, and the moment the question becomes who owns this in production, the committee dissolves into a jurisdictional argument. The pilot never crosses over because there is no name on the accountability line. The MIT NANDA data shows this pattern in the interviews. Every successful five-percent case names a single person who was the executive owner of the production system before the pilot budget was approved. The unsuccessful cases could not.

What actually needs to be built

If you are the CFO or the CEO reading this and you are three months into an AI pilot, the honest question is what got skipped. Ship dates are downstream of that.

Did the pilot use real production data, or a curated slice. Did the pilot run through the same authentication path a production user would. Did the pilot log every tool call in a format the security team can audit. Did the pilot include a rollback path. Did the pilot rehearse the failure modes, including the ones where the model is confidently wrong. Did the pilot survive the exhaustion cases, the multi-turn conversations, the edge cases the sales demo never showed. Did the pilot rebuild a workflow, or bolt onto one. Does the production version have a named owner with a pager and the authority to shut it down.

If the honest answer to most of those is no, the pilot is not ready to be widened. It is ready to be redone, this time with the surrounding wire.

Why this is an architecture problem

A vendor will not build this for you. A framework will not build this for you. The harness, the auth flow, the rollback path, the workflow redesign, the ownership decision, the compliance mapping are all specific to your business, your customers, your regulators, and your risk tolerance. Nobody else can decide how much of the workflow the AI is allowed to own, how much of the answer a human has to sign, or how fast the kill switch has to be.

This is the work that separates the companies whose AI shows up on the P&L from the ninety-five percent whose AI shows up in a demo deck and nowhere else. This is architectural work. Tooling alone will not do it. Buying a bigger enterprise plan will not do it. Signing a contract with a hyperscaler will not do it. Hiring a vendor to run the pilot will not do it, because the vendor's incentive is to hand you the model and walk away.

The companies that have crossed the divide, from Cisco to HPE to a growing list of financial services firms that hit their agent-fleet milestones in late July, all invested in the same layer. They built an internal team that owns the loop. They treated the model as a component and the surrounding infrastructure as the product.

You are being asked, as a leader, to fund the invisible work. The demo does not show the harness. The pilot does not test the auth. The tool selection meeting does not spend time on the rollback path. Every incentive in the vendor market pushes you toward buying the model, running the pilot, and hoping the loop shows up on its own. It will not.

The five percent got there by budgeting for the loop first and the model second. That is the inversion your organization has to make.

Agor AI Advisory works with executive teams to design the surrounding infrastructure a real production AI depends on. The eval harness, the ownership model, the workflow redesign, the auth and audit posture, the kill switch, the rollback plan, and the accountability chain that turns a pilot into something the CFO can put on the earnings call. This is the architecture the ninety-five percent skip. It is why they are the ninety-five percent.

Sources

Pilot vs. production: the five columns nobody funded

Verifies the post's central structural claim that what separates a working demo from a shipped system is the surrounding loop, not the model, by naming the five layers the pilot skipped. After fifteen seconds a reader can score their own in-flight pilot row by row and see exactly which layers were never built.

  • Every row in the right-hand column was invisible in the demo. That is the entire reason the demo went well.
  • The five percent that reach the P&L budgeted for this table first and the model second.
  • If the honest answer on most rows is still the left column, the pilot is not ready to be widened. It is ready to be redone.
What the pilot didWhat production requires
Input dataA pilot that included the real data would have failed, and the pilot's job was to succeed.A curated slice, with picked questions, picked users, and a picked window of timeReal production data: three rows with the same customer name and no primary key, a question asked in Portuguese, the multi-turn case the demo never showed
Authentication and auditThe token expires at 3 a.m. whether or not anyone planned for it.A token that lived as long as the pilot did, and no log the security team could queryAuth that survives token rotation, structured logging of every model input, tool call, and output, and an auth flow security can review, which the 2026-07-28 MCP spec now aligns to OAuth 2.0 and OpenID Connect
EvaluationThe harness is more work than the model, and it is where your business logic actually lives.Briefed testers eyeballing outputs and calling the result a successA labeled dataset, a scoring function, an offline pipeline, an online sampling policy, and humans reviewing failures, plus production replay against live traces before the next percent of users sees a change
Failure pathWithout it, every deployment is a controlled explosion and every rollback is a fire drill.No rehearsal of the cases where the model is confidently wrongRetries with backoff on transient errors, hard failure on permanent ones, idempotency keys so a retried call does not double-charge, a rollback path, and a kill switch faster to hit than to explain
OwnershipA committee cannot roll back a model at 3 a.m., and the jurisdictional argument is why pilots die at executive review with fine metrics.A cross-functional committee where everyone attends the weekly and everyone approves the ship decisionOne named executive owner with the pager and the authority to shut it down, named before the budget was approved

Source: Claims and citations within this post: MIT NANDA State of AI in Business 2025 (95% of pilots return nothing; single-accountable-owner pattern), the Model Context Protocol 2026-07-28 spec (stateless HTTP, OAuth 2.0/OIDC alignment), first-half-2026 production eval releases (LangSmith production replay, Braintrust trace-level scorers, Arize twelve-metric framework), and the CIO / Digital Thought Disruption shadow-AI reporting. · verified · as of 2026-08-19

Want this kind of automation working for your business?

Agor AI designs and ships the systems these posts describe, scoped in weeks, not quarters.

Book a Free Strategy Call