Ai Engineering 3 min read

Session Persistence Arrives in Claude With MCP 2026-07-28

Anthropic's 2026-07-28 update to the Model Context Protocol introduces session persistence, granular sandboxing, and multi-server routing across Claude apps.

Anthropic rolled out the 2026-07-28 version of the Model Context Protocol (MCP) across Claude.ai and its mobile applications. This update shifts the protocol toward robust state management and multi-server orchestration. Developers building local tools and data connectors will see immediate performance shifts in long-running conversational workflows.

Session Persistence and Latency

The architectural shift in this release centers on Session Persistence. Previous MCP implementations required servers to transmit their entire schema and context on every turn. The 2026-07-28 spec maintains state across the connection lifecycle.

This adjustment significantly reduces the communication overhead between Claude and local servers. For complex data-retrieval tasks, latency drops by an estimated 15 to 20 percent. Independent benchmarks indicate that developers running extended debugging sessions also see up to a 12 percent reduction in token consumption since the model no longer re-processes tool definitions repeatedly.

If you need to control token budgets in production environments, migrating to persistent connections offers a straightforward efficiency gain.

Sandboxed Execution and Enterprise Controls

Anthropic introduced Granular Permission Scoping through a new Sandboxed Execution mode. Users can now grant Claude temporary, task-specific access to distinct directories or databases instead of issuing broad filesystem permissions.

For IT administrators deploying tools across enterprise monorepos, the update includes Centralized MCP Management. This allows organizations to whitelist specific MCP servers at the domain level, enforcing standardized data access across all employee accounts.

Multi-Server Orchestration

Claude can now route queries across up to five different MCP servers simultaneously. A single user prompt can orchestrate a workflow that pulls records from a local PostgreSQL database, crosses it with a local CSV file, and formats a unified response.

To support this routing capability, Anthropic released a pre-built library of over 45 official connectors. Native integrations now exist for Jira, GitHub, Slack, and PostgreSQL.

FeatureProtocol Capability
Routing Limit5 simultaneous servers
Official Connectors45+ pre-built integrations
DebuggingNative MCP Inspector (Desktop)

Development and Debugging

The Claude Desktop client now includes the MCP Inspector. This local debugging environment exposes the exact JSON-RPC traffic passing between Claude and any connected MCP server. You can monitor payload sizes and verify state persistence directly in the client.

The 2026-07-28 protocol update is live for Claude Pro, Team, and Enterprise users. Free tier accounts can access the verified public connectors but are restricted from hosting local servers.

If you build custom MCP tools, update your local server implementations to utilize Session Persistence immediately to capture the latency reductions and token savings.

Get Insanely Good at AI

Get Insanely Good at AI

The book for developers who want to understand how AI actually works. LLMs, prompt engineering, RAG, AI agents, and production systems.

Keep Reading