Table of Contents

MCP’s Second Act: The Web-Native Protocol

TL;DR: MCP is adopting decades of distributed-systems lessons – stateless requests, explicit state, cacheability, and load-balancer friendliness. It’s becoming less like a bespoke protocol and more like the Web itself. This is the third in a five-part series exploring how MCP evolved in 2026. Part 1 covered the architectural shift. Part 2 explored the conceptual evolution toward agent operating systems. Now we’ll examine the principles driving these changes – and why they matter for operations at scale.

Ashur Kanoon
Ashur Kanoon

Director of Technical Product Marketing

Summarize:

Read
0%

Table of Contents

Read
0%

What’s Changing With MCP 2026-07-28?

If you’ve worked in distributed systems, cloud infrastructure, or API design over the past two decades, the MCP 2026-07-28 changes probably look familiar.

Stateless requests, metadata headers for routing, cacheability baked into responses, load-balancer friendliness, HTTP as a first-class substrate and deprecation windows aren’t new ideas. They’re the hard-won lessons of the Web, REST, and decades of attempts to build scalable, reliable, interoperable systems. The MCP maintainers didn’t invent these principles, but now they’re applying them to a protocol that originally wasn’t designed with that scale in mind.

And that’s the interesting story of the 2026 update: MCP’s second act is becoming less specialized and more ordinary.

Why Did the MCP Model Need to Change?

Pre-2026-07-28 MCP worked really well for one thing: a local client (like Claude) talking to a local subprocess (like a tool server) over stdio. It was a perfect tool if what you needed was connection-oriented, session-based, server-initiated requests on demand. 

But the moment you tried to scale it, problems appeared:

  • Sessions require stickiness. The same client request might need to go to different server instances, but the session was pinned to a specific server. You needed either sticky routing or a shared session store.
  • Server-initiated requests need long-lived connections. If your server wanted to send the client a request unprompted, the connection had to stay open. That works for local stdio but creates friction for distributed systems.
  • Infrastructure becomes opaque. Gateways, proxies, and load balancers see JSON-RPC traffic but don’t understand MCP. You can’t inspect or meter or route on protocol semantics without parsing the whole message body.

These were design choices, not defects. But they no longer made sense as deployment models changed, so MCP had to change too.

The Web-Native Approach

The 2026 update trades specialization for universality. Here’s what changed:

Stateless requests. Every request is independent and the server doesn’t maintain session state. This means:

  • Any server instance can handle any request
  • Clients can batch requests across instances
  • Infrastructure doesn’t need to track connections
  • You can use boring, commodity load balancers

Explicit state. When a server needs to track state across requests (the most common case), it mints a handle and returns it to the client. The client passes it back on the next request. This is how the web handles shopping carts, form submissions, and pagination: State is made explicit rather than tied to a specific connection. 

Cacheability as a first-class concern. List responses (tools/list, resources/list) now include ttlMs metadata. Clients know how long results are good and infrastructure can cache them. 

Metadata headers for routing. Mcp-Method and Mcp-Name headers let proxies and gateways route on MCP semantics without parsing the request body, just like CDNs and API gateways.

HTTP standards, not MCP-specific machinery. OAuth 2.0 (not custom auth), standard JSON-RPC (not hand-rolled messaging), deprecation windows (not surprise breakage).

What is the Impact of a Web-Native MCP?

This might sound like plumbing, because it is. But plumbing is what enables everything built on top.

At scale, this means:

  • An agent needing credentials doesn’t require a sticky connection to a specific credential server.
  • Multiple credential providers can sit behind a load balancer.
  • Audit infrastructure can meter and log MCP traffic at the gateway without understanding MCP internals.
  • You can use standards-based OAuth authorization and discovery mechanisms without custom wiring. 

For operators, this means:

  • Horizontal scaling works the way you expect (no sticky sessions or shared state).
  • Failure modes are simpler (instance dies, request goes to another one).
  • Observability is standard (trace request methods/names through logs, not JSON-RPC payloads).
  • You can use off-the-shelf infrastructure (Envoy, Kong, AWS ALB, etc.).

For architects, this means:

  • MCP stops being a special protocol and becomes a standard HTTP service.
  • Enterprise gateway patterns apply directly.
  • Rate limiting, authentication, authorization, and audit all work with existing infrastructure.
  • Multi-tenant deployments become straightforward.

How Did the Philosophy Behind MCP Change? 

There’s a deeper point here: the original MCP was designed for direct, intimate integration with one client, one server, no intermediaries, and all the richness of a bidirectional channel. It was optimized for expressiveness so that the server could ask the client for anything, anytime.

The 2026 version is designed for interoperability at scale: many clients, many servers, lots of intermediaries, all following standard conventions. It trades some expressiveness for universality. You lose server-initiated requests, but you gain the ability to run behind any HTTP infrastructure.

This is the same trade-off the Web made in the 1990s. HTTP gave up some of what was possible with FTP and Gopher in exchange for simplicity, cacheability, and the ability to build a universal information system on top of it.

MCP is making a similar choice: giving up some of the expressiveness of a specialized protocol to become a standard HTTP service.

What This Enables

Once MCP becomes “just another HTTP service,” doors open:

  • Client and intermediary caching of eligible tool and resource lists.
  • API gateway routing and authentication using standard HTTP infrastructure.
  • Standard HTTP-layer protections, supplemented by MCP-aware inspection where needed
  • Service mesh integration (Istio, Linkerd) for observability and resilience.
  • Standard rate limiting and quota at infrastructure layer.
  • DDoS protection using existing tools.
  • Multi-cloud deployments without protocol-specific concerns.

Instead of building “MCP infrastructure,” you’re building “HTTP services that happen to use MCP.”

The Series Arc

We’ve now covered:

  1. What changed: Stateless, web-native architecture (Part 1).
  2. What it enables conceptually: Full agent operating systems (Part 2).
  3. What it enables operationally: Commodity infrastructure patterns (this post).

The final two posts explore:

  • How enterprise governance and security are woven in.
  • How all these threads tie together into the MCP vision.

Learn More

Frequently Asked Questions About Web-Native MCP

Why is MCP becoming stateless?

MCP is removing protocol-level sessions so each request can be handled independently. This makes it easier to distribute requests across server instances without relying on sticky routing or shared session infrastructure.

How does MCP maintain state without sessions?

When an operation requires continuity across requests, the server can issue an explicit handle that the client returns with subsequent calls. The state is no longer implicitly tied to a particular connection or MCP session.

How does the web-native MCP architecture improve scalability?

The updated architecture supportFrequently Asked Questions About Web-Native MCP


s conventional HTTP infrastructure, including load balancers, gateways, caching, and distributed tracing. Headers such as Mcp-Method and Mcp-Name also let intermediaries route and observe MCP traffic without parsing the full JSON-RPC body.

Related Reading

Ashur Kanoon
Ashur Kanoon

Ashur Kanoon is the technical product marketing guy at Aembit. He started his career as a software engineer at Cisco working on Y2K. Yes, that Y2K. Today, he takes what excited and highly caffeinated engineers build and makes sure business and technical buyers understand why it matters. He has done this at a spinout that was lateracquired and at two other startups, both of which were also acquired.Outside of work, Ashur enjoys mechanical things, mostly cars and watches, and spending time with his wife and two teenagers.

You might also like

The gateway label now covers several very different jobs. The useful question is what traffic each gateway handles, what decision it supports, and where identity and access fit in the architecture.
The second in a five-part series on how MCP is moving beyond tool calling, and what that shift means for agent workflows, interoperability, and enterprise use.
Agentic AI introduces new cybersecurity risks, primarily concerning autonomous identity, tool chain exposure, and cascading compromises, requiring security teams to urgently adopt least-privilege identity frameworks and real-time monitoring designed specifically for self-directed, persistent workloads.