AWS announced updates to the Model Context Protocol (MCP) specification, which removes protocol-level sessions. This change allows requests to be routed to any available server instance, eliminating the protocol requirement for sticky sessions and shared session stores. The updated specification removes the initialize and initialized handshake and the Mcp-Session-Id header, enabling independent request routing behind conventional load balancers.
For AWS deployments, the stateless MCP specification removes the need for infrastructure specifically used to maintain MCP protocol sessions. This allows for replacing session-affine routing with conventional request routing and removing session storage dedicated solely to MCP protocol state. AWS Lambda is now a suitable deployment option due to the protocol's new request-response model, which no longer requires persistent session connections.
The updated MCP specification introduces an optional server/discover operation for clients that need to determine server capabilities before making tool calls. It also includes new Mcp-Method and Mcp-Name headers for gateway routing and throttling, and W3C Trace Context support for distributed tracing. Caching controls are provided via ttlMs and cacheScope. Stream resumability has been removed, requiring clients to implement retry logic for interrupted operations and emphasizing idempotency for tool calls with side effects.
AWS maps these MCP changes to its Well-Architected guidance for agentic AI, covering areas such as monitoring, tracing, security, and tool integration. The shift to a stateless protocol simplifies horizontal scaling and infrastructure management. Community discussions highlight that while the protocol is stateless, applications built on it do not necessarily have to be. Early implementation efforts, such as Apify's MCP server project, are working to integrate stateless support alongside existing sessionful systems.
✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →
One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.
One email a day. Unsubscribe in one click, any time.
Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.
▶ Play today's briefNew every morning, and the back catalogue is archived by date.
AWS has updated the Model Context Protocol (MCP) specification to eliminate protocol-level sessions, allowing requests to be routed to any available server instance. This change simplifies horizontal scaling for MCP server deployments by removing the need for sticky sessions and shared session stores, shifting state management responsibilities to surrounding infrastructure.