By NHI Mgmt Group Editorial TeamDomain: Agentic AI & NHIsSource: ObotPublished July 21, 2026

TL;DR: MCP’s 2026 release candidate replaces sticky sessions, protocol-level session state, and ad hoc governance with stateless routing, explicit handles, and formal lifecycle rules, according to Obot. The shift makes MCP easier to deploy in enterprise environments, but it also pushes authorization, auditability, and configuration control into surrounding identity and gateway layers.


At a glance

What this is: MCP’s 2026 release candidate makes the protocol stateless, formalises governance, and shifts enterprise control responsibility to the surrounding identity and gateway stack.

Why it matters: IAM, NHI, and platform teams need to understand that MCP’s core is simplifying transport while leaving authorisation, audit trails, and lifecycle control to the enterprise boundary.

By the numbers:

  • The release candidate locked on May 21, giving SDK maintainers and client implementers a ten-week window to validate the changes before final publication.

👉 Read Obot's analysis of MCP's 2026 release candidate and enterprise readiness


Context

MCP is moving from early protocol experimentation toward a more governed enterprise interface for AI tools and services. The core issue is not just transport efficiency, but who owns state, authorization, and lifecycle control when clients, servers, and gateways all need to interoperate cleanly.

For identity practitioners, the interesting change is that MCP is stripping state out of the protocol layer and pushing trust decisions into surrounding controls. That changes how teams think about OAuth, OpenID Connect, audit logging, and policy enforcement around non-human identities and AI-driven workflows.

This is typical of platforms that start simple and then inherit enterprise requirements once adoption grows. The article shows that MCP is now at that inflection point.


Key questions

Q: How should security teams govern MCP in enterprise environments?

A: Treat MCP as an identity and authorization problem first. Assign ownership for every agent and tool, enforce runtime policy checks on each invocation, and limit what context can flow between tools. The goal is to reduce the agent’s blast radius before it reaches downstream systems, not to rely on static perimeter controls after the fact.

Q: What breaks when MCP clients and servers still assume sticky sessions?

A: Sticky-session assumptions break routing, scaling, and identity validation when the protocol no longer maintains connection-bound state. Implementers may also miss hidden dependencies that only appear under load-balanced or multi-instance deployment. The result is inconsistent authorization behaviour and a false sense of control continuity.

Q: When should organisations prioritise gateway controls over protocol features?

A: They should do it as soon as MCP is used beyond isolated experiments. Enterprise concerns such as SSO integration, audit trails, configuration portability, and tool-level policy do not disappear because the core protocol is stateless. The gateway becomes the practical place to standardise those controls.

Q: Who is accountable for MCP lifecycle governance and deprecation tracking?

A: The accountable team is the platform or identity owner that operates the MCP boundary, not the protocol working group. Governance has to cover deprecated features, replacement paths, and cutover planning so server teams do not discover removals only when client behaviour starts failing.


Technical breakdown

Why a stateless MCP core changes routing and trust boundaries

A stateless protocol means the server no longer depends on connection-bound session identifiers or sticky routing to preserve context. Instead, metadata travels with each request, and any instance can process the next call if the client supplies the necessary handles and state. That is operationally cleaner, but it also changes where trust lives: the gateway, authorization layer, and client implementation now become the real control points. The protocol is no longer carrying implicit state on behalf of the application.

Practical implication: treat MCP gateways and identity controls as first-class enforcement points, not passive traffic routers.

How explicit handles replace hidden session state in MCP workflows

The release shifts from transport-held session memory to model-visible handles returned by tool calls and passed back on later requests. This is a significant architectural move because it forces the conversation state to be represented as ordinary arguments rather than buried in a shared session store. That makes retries and horizontal scaling easier, but it also makes handle integrity, scope, and replay resistance part of the security model. If a handle is mishandled, the protocol has no hidden session context to save you.

Practical implication: validate handle scope, lifetime, and reuse behaviour as part of MCP security testing.

What formal lifecycle governance means for protocol extensions and deprecations

MCP is introducing a defined Active, Deprecated, Removed lifecycle with a twelve-month minimum between deprecation and removal. That matters because it replaces informal version drift with predictable governance, and it gives implementers a clearer runway for migration. The conformance suite also becomes part of final-status approval, which turns compatibility into a measurable requirement rather than a promise. For enterprise adoption, this is less about syntax and more about change control across a growing ecosystem.

Practical implication: map each MCP dependency to its lifecycle status and plan migration before a deprecated capability becomes a hard removal.


NHI Mgmt Group analysis

MCP’s shift to stateless transport exposes the real enterprise control boundary. Once protocol sessions disappear, sticky routing and shared session stores stop being the security anchor. That means the control plane moves to the surrounding identity, gateway, and authorization layers, where NHI governance has to be explicit rather than implied. The implication is that enterprises should stop treating protocol state as a trust mechanism and start governing the boundary that actually enforces access.

Protocol-native session assumptions are being replaced by identity-bearing request models. MCP now expects state to travel as request data and handles rather than live in the transport layer. That aligns with how modern NHI and API ecosystems already behave, but it also means access decisions must be evaluated per request, not per connection. For practitioners, this reinforces a zero standing privilege mindset around tool access and request-scoped trust.

Governance maturation in MCP mirrors the broader shift from feature growth to control durability. Formal deprecation windows, conformance scoring, and standardised authorization behaviours are the signs of a protocol entering enterprise reality. This is where identity teams should pay attention, because unmanaged protocol churn becomes an identity risk when machine access scales faster than lifecycle governance. The practical conclusion is that protocol governance now belongs inside identity architecture, not beside it.

Enterprise readiness is still an ecosystem problem, not a core-spec problem. The roadmap acknowledges that audit trails, SSO-integrated authorization, gateway behavior, and configuration portability remain open. That means the core protocol can improve while the real burden shifts to implementers who must stitch together policy, telemetry, and non-human identity controls around it. Practitioners should assume the missing control plane will be assembled outside the spec and govern it accordingly.

From our research:

  • 80% of organisations report their AI agents have already performed actions beyond their intended scope, including accessing unauthorised systems (39%), inappropriately sharing sensitive data (31%), and revealing access credentials (23%), according to AI Agents: The New Attack Surface report.
  • Only 44% of companies have implemented any policies to govern AI agents, leaving the majority without formal runtime controls for non-human decision makers.
  • For the broader control picture, see OWASP Agentic Applications Top 10 for the identity and tool-use risks that emerge when systems can act at runtime.

What this signals

Stateless protocol design does not remove identity risk, it relocates it. As MCP matures, the governance question shifts from session persistence to request-level control, and that matters because non-human identity behaviour is already outrunning policy in adjacent AI systems. With 80% of organisations reporting AI agents acting beyond intended scope, the lesson is that transport simplification must be matched by stronger boundary enforcement, not looser assumptions.

The most useful pattern for practitioners is to treat the gateway as the enforcement seam for identity, telemetry, and lifecycle policy. That is where auditability, federation, and tool-level authorization can be made consistent across heterogeneous MCP servers.

Enterprise readiness for MCP will be judged by control durability, not just protocol elegance. Teams that can align stateless routing with explicit authorization and lifecycle governance will be better placed to absorb future extension growth without multiplying blind spots.


For practitioners

  • Map MCP trust boundaries to identity controls Identify where authorization, audit logging, and policy enforcement actually occur in your MCP deployment. Do not assume the protocol core carries enough state or governance to satisfy enterprise requirements.
  • Validate request-scoped state handling Test how handles, metadata, and downstream tool arguments behave across retries, load balancers, and failover events. Verify that request-scoped state cannot be replayed or reused outside its intended context.
  • Inventory deprecated MCP capabilities now Build a migration list for Roots, Sampling, Logging, and any other capability moving through the Active to Deprecated to Removed lifecycle. Tie each item to an owner, replacement path, and cutover date.
  • Place gateway policy ahead of MCP servers Enforce OAuth, OpenID Connect, RBAC, and logging at the gateway or adjacent control layer rather than leaving them to individual servers. This is where enterprise consistency is most likely to hold.

Key takeaways

  • MCP is moving from experimental protocol design to governed enterprise plumbing, and that shifts security responsibility outward to the identity boundary.
  • Stateless routing, explicit handles, and formal lifecycles improve deployability, but they also make gateway policy and auditability non-negotiable.
  • Practitioners should now map MCP adoption to OAuth, OpenID Connect, logging, and deprecation management before the ecosystem hardens around new assumptions.

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Agentic AI Top 10 and OWASP Non-Human Identity Top 10 address the attack and risk surface, while NIST Zero Trust (SP 800-207), NIST CSF 2.0 and NIST SP 800-53 Rev 5 set the governance and control requirements practitioners need to meet.

FrameworkControl / ReferenceRelevance
OWASP Agentic AI Top 10MCP governs agent tool access and request-time behaviour in an agentic context.
OWASP Non-Human Identity Top 10NHI-01MCP clients and servers exchange non-human identities through handles and token-backed access.
NIST Zero Trust (SP 800-207)Stateless request handling and per-request verification align with Zero Trust principles.
NIST CSF 2.0PR.AC-1MCP enterprise controls depend on identity and access management at the boundary.
NIST SP 800-53 Rev 5AC-6Least privilege is central to tool access, server role separation, and gateway enforcement.

Map MCP tool access and delegation paths to agentic AI abuse cases before expanding production use.


Key terms

  • Stateless protocol: A stateless protocol does not depend on server-held session memory to preserve conversation context between requests. In MCP, that means state must move into explicit request data and handles, which improves scale but shifts trust and integrity concerns to the client, gateway, and authorization layers.
  • Request-scoped state: Request-scoped state is information carried inside the request itself rather than stored in a long-lived server session. For MCP, this makes workflow continuity visible to the model and easier to route, but it also requires tighter validation because state can be replayed, reused, or mishandled if controls are weak.
  • Lifecycle Governance: Lifecycle governance is the set of controls that cover creation, assignment, review, rotation, and retirement of identities and credentials. For NHIs, it is the difference between a temporary automation asset and a persistent access risk. Strong lifecycle governance keeps ownership and expiry tied to actual business use.
  • Enterprise boundary: The enterprise boundary is the set of surrounding controls that make a protocol safe for production use, including identity, authorization, logging, policy enforcement, and configuration management. For MCP, the boundary matters because the core spec deliberately leaves much of that control plane to the ecosystem.

What's in the full article

Obot's full article covers the operational detail this post intentionally leaves for the source:

  • The exact MCP release candidate changes and the ten-week validation window for SDK maintainers
  • The specific SEP-driven governance process behind the 2026 roadmap and its four priority areas
  • The detailed authorization changes around issuer binding, issuer validation, and OpenID Connect deployment assumptions
  • The extension mechanics for MCP Apps and Tasks, including migration implications for experimental APIs

👉 Obot's full post covers the release mechanics, governance SEPs, and enterprise deployment implications in detail.

Deepen your knowledge

NHI governance, agentic AI identity, and machine identity security are core topics in our NHI Foundation Level course, the industry's only accredited NHI security programme. If you are building or maturing an identity programme, it is worth exploring.
NHIMG Editorial Note
Published by the NHIMG editorial team on August 18, 2026.
NHI Mgmt Group — the independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org