MCP's release candidate removes per connection state, letting any server handle any request. The shift makes AI tool plumbing scale like the rest of the cloud.
On July 28, Model Context Protocol, the emerging standard for connecting AI models to external tools and enterprise data, ships a release candidate that replaces per-connection sessions with a stateless design. Every request will carry the information any available server needs to process it on its own.
Today's MCP keeps state on the server that opens each client connection, so traffic has to be routed back to the same machine. That pattern caps horizontal scaling, and it makes MCP feel like a developer-laptop tool rather than a production-grade integration layer. The new design treats requests as interchangeable units, the way a typical web service does.
"There's a hefty operational tax that teams have to pay today," said Muskan Bandta, a cloud associate at ZopDev. Statelessness is meant to retire that tax. The flip side: any cross-request context now has to be managed at the application layer. Developers who leaned on the old implicit session state will own that bookkeeping themselves.
For Amit Jena, AI development manager at Kanerika, the practical change is portability and resilience. "Stateless design makes it possible to orchestrate across distributed environments and recover from failures more gracefully," he said. The release candidate gives teams piloting MCP a planning runway to rework integrations before the protocol's session-based past stops being an option.
The release candidate is a preview; final timing and any migration tooling are still to be confirmed by the MCP project.