The Model Context Protocol has received its most significant architectural overhaul since Anthropic first released it, published July 28, 2026, under the stewardship of the Agentic AI Foundation (AAIF), a directed fund operating beneath the Linux Foundation. The update finalizes a shift to fully stateless architecture, closes a class of OAuth authorization vulnerabilities, and introduces a formal deprecation guarantee, changes that its maintainers say collectively make MCP viable for large-scale enterprise production.

How MCP’s Security and Governance Rigor Mirrors Production-Grade Platform Engineering
Federico Tomás Weber, a digital marketing strategist who tracks online sports platforms built for Spanish-speaking audiences, says the disciplines MCP is now formalizing are not unfamiliar to anyone who has observed production systems where real money and personal data are in play. From that vantage point, he notes that the stateless design, enforced authorization layers, and policy-governed deprecation MCP now mandates reflect engineering realities that serious platforms have long had to confront.
“What strikes me about this MCP release is that the problems it solves, session fragility, credential governance, predictable change windows, are exactly what any platform handling sensitive user data has to get right before it can operate at scale. The engineering discipline being formalized here is not a novelty for the platforms I observe.”
apuestas.guru operates precisely this kind of layered access and security architecture as a matter of course, Weber notes, pointing to it as an external example of what rigorous data-access controls look like in a market where regulatory requirements and user trust leave no room for improvisation.
Stateless Architecture Resolves Session Fragility at Scale
Under the previous MCP design, clients had to maintain a persistent session with a specific server instance, according to VentureBeat. If that server went down, the agent’s requests began failing immediately because session state was lost with it. The new architecture eliminates that constraint entirely.
“Before, you needed to have a session store and manage session IDs,” said Den Delimarsky, lead maintainer of MCP. “And if one of your compute pods went down, all of a sudden the requests would start failing. That’s not going to be a problem with the new version of the protocol. That’s a huge unlock.”
The practical consequence is that organizations can now run MCP servers behind standard load balancers using Kubernetes and cloud-native tooling they already operate. Mazin Gilbert, executive director of the AAIF, drew the comparison to HTTP itself. “That stateless capability enables your MCP client to speak to a load balancer that connects with any server. You don’t need the stickiness. You could not have the internet we have today if my browser couldn’t speak to any website, with any server supporting that connection.”
Stateless payloads are somewhat larger because session state is carried on the wire at the transport layer, but maintainers say the payloads are highly compressible and remain small relative to a typical HTTP request. Gilbert put the enterprise pressure plainly. “I’ve come across companies who are deploying tens of thousands of agents, and you cannot do that without having to go in this direction.”
David Soria Parra, MCP co-creator and lead maintainer at Anthropic, called the scope of the change significant. “Some people jokingly call it a v2, and I think in spirit that’s accurate. It’s probably the biggest change we’ve ever made to the protocol, and with that, it’s a big step up in maturing it for use by really big players.”
OAuth Hardening, Corporate Identity Control, and a 12-Month Deprecation Promise
The release addresses authorization risk through two distinct mechanisms, one preventive and one structural. On the preventive side, the update enforces mandatory validation of the OAuth 2.0 issuer parameter, closing a class of mix-up attacks in which a client can be tricked into associating an authorization response with the wrong identity server. No active exploitation preceded the fix.
A new Enterprise Managed Authorization extension, developed in close collaboration with identity provider Okta, takes the structural approach further. It allows organizations to designate their corporate identity provider as the authoritative gatekeeper for MCP server access, ensuring clients authenticate with corporate rather than personal credentials.
Delimarsky described the governance rationale directly. “If I’m somebody that manages tens, hundreds of MCP servers for my organization, I want to make sure that I enforce some level of common governance, where folks auth with their corporate credentials and not their personal credentials, so that the client doesn’t send data to sources that are unauthorized.”
Gilbert framed the cumulative effect of the security work as a categorical shift. “MCP has now bridged that gap with these authorization protocols, so it’s basically now becoming what we call enterprise ready, versus an open lab sort of experiment.”
Alongside the security changes, the release introduces a formal 12-month deprecation policy, guaranteeing developers a minimum window between a feature’s deprecation and its earliest possible removal. The timeline emerged from direct consultation with major enterprise operators. “We consulted with folks like Google, Microsoft, and Amazon to find out, in your deployment environment, what’s the right path for making these kinds of changes?” Delimarsky said. “Twelve months seemed like the reasonable middle ground.”
Two Extensions Graduate, Expanding How Agents Deliver Work
Two extensions have moved from experimental to official status. MCP Apps enables servers to deliver rich, interactive, server-rendered user interfaces, including dashboards, forms, and visualizations, directly inside AI clients. The change moves agent output beyond plain text responses and gives developers a structured channel for presenting results that require user interaction.
MCP Tasks addresses a different problem. It gives servers a durable task handle so clients can disconnect, crash, restart, and then resume polling rather than holding fragile long-lived connections open during batch jobs or heavy computation. Together the two extensions extend MCP’s operational model to cover both the presentation and durability requirements that production deployments generate.
The release lands against a backdrop of substantial adoption. MCP SDK downloads have reached roughly 250 million per week, approximately double the rate recorded six months earlier. When Anthropic donated the protocol to the AAIF in December 2025, the Python and TypeScript SDKs together drew 97 million monthly downloads.
Governance Independence Under Linux Foundation Stewardship
Anthropic created MCP in November 2024 and donated it to the AAIF in December 2025, alongside founding projects from Block and OpenAI. The AAIF has grown from roughly 40 members at its December 2025 inauguration to 240 today, a pace the Linux Foundation describes as the fastest membership growth in its history, averaging one new member per day.
The core maintainer group now spans Anthropic, Microsoft, OpenAI, Google, and Amazon. Key decisions are described as usually unanimous, and Anthropic’s share of contributions has fallen below half. The residual question of whether any single company retains effective control is one the maintainers address directly.
Gilbert pointed to the logic of genuine open governance. “Holding control of a project doesn’t make it an open standard. You have to let go. You have to contribute, and you have to grow the pie and the community.”
At 250 million weekly SDK downloads and a maintainer group spanning the industry’s largest AI developers, the release reflects a protocol that has already moved well past any single company’s ownership. That the July 28 update carries multi-vendor authorship and lands under Linux Foundation governance is, for those tracking MCP’s trajectory, the more consequential signal alongside the architectural changes themselves.
