AI agents need a standard to use external tools, right? MCP (Model Context Protocol) became that standard. Since Anthropic open-sourced it in November 2024, the number of servers has surpassed 17,000 in just a year and a half, and Microsoft, Google, and OpenAI have all jumped on board. It's no longer about "should we use MCP or not" — it's about "how to use it well."

But becoming the standard brought new problems. Enterprise environments lack audit trails, SSO integration is complex, and sessions break when you horizontally scale servers. On March 9, 2026, MCP lead maintainer David Soria Parra released the 2026 roadmap — and it's the answer to exactly these problems.

TL;DR
Streamable HTTP enhancement Agent-to-agent communication stabilization Governance framework established Enterprise readiness Production MCP era

What is this?

The MCP 2026 roadmap shifted from a "release-date-centric" to a "Priority Areas-centric" structure. Working Groups drive the timeline for each area, while Core Maintainers set the strategic direction.

There are exactly 4 core priorities.

2026 MCP: 4 Key Priorities

1. Transport scalability — Streamable HTTP enhancement
2. Agent communication — Tasks primitive stabilization
3. Governance maturity — Working Group delegation model
4. Enterprise readiness — Audit trails, SSO, gateways

First, Transport scalability. Streamable HTTP is the key transport that enabled MCP servers to run as remote services rather than local processes. But production use revealed issues — stateful sessions clashed with load balancers, horizontal scaling needed workarounds, and there was no way for registries or crawlers to know what a server does without connecting to it. The solution is a stateless session model and .well-known-based server discovery.

Second, Agent communication. The Tasks primitive (SEP-1686) launched experimentally, but retry semantics on failure and result retention expiration policies are still missing. These are being filled in based on production feedback.

Third, Governance. Currently, all SEPs (Spec Enhancement Proposals) must be reviewed directly by Core Maintainers, creating a serious bottleneck. Going forward, domain-specific Working Groups will be able to accept SEPs through a delegation model. A contributor ladder from community participant to maintainer is also being formally documented.

Fourth, Enterprise readiness. Audit trails, SSO integrated authentication, gateway/proxy patterns, and configuration portability — these are the four key challenges. Importantly, these will be implemented as Extensions, not core spec. Enterprise requirements are real, but the goal is to not bloat the base protocol.

17,000+
Indexed MCP servers
4
2026 core priorities
$1.8B
Estimated 2025 MCP market size

What changes?

The MCP ecosystem is moving from the "experimental" phase of 2024–2025 to the "enterprise production" phase of 2026. The numbers tell the story.

2024–2025 (Experimental)2026 (Production)
Server scale100 → 5,500 (PulseMCP)17,000+ indexed, official registry API stabilized
Big tech supportAnthropic alone → OpenAI joinedMS Copilot Studio GA, Google Cloud managed MCP, AWS auth guide
Transportstdio + SSE (local-focused)Streamable HTTP stateless model + .well-known discovery
AuthStatic client secretsOAuth 2.1 + SSO integration + DPoP/workload ID proposed
GovernanceCore Maintainer central reviewWorking Group delegation + contributor ladder documented
EnterpriseDIY implementationAudit trails, gateway standards, config portability — via Extensions

What's especially noteworthy is big tech going all in.

Microsoft moved MCP to GA in Copilot Studio in May 2025, adding Streamable transport and enhanced tracing/analytics. In early 2026, they started a public preview of MCP Apps, showing interactive UI widgets directly inside Copilot Chat.

Google Cloud launched managed remote MCP servers for BigQuery, Maps, GKE, and GCE in December 2025, then expanded to AlloyDB, Spanner, Cloud SQL, Firestore, and Bigtable in February 2026. Starting March 17, 2026, enabling a supported service automatically turns on the MCP server. Complete with IAM, audit logging, and Model Armor (indirect prompt injection defense).

Server discovery is also taking shape. A Server Cards spec has emerged that exposes server metadata via a /.well-known/mcp/server.json endpoint, and platforms like Replicate have already adopted it. The official MCP Registry API is also at v0.1 freeze.

"Previously, you had to connect to an MCP server to know what it does. Now you can understand its capabilities through .well-known metadata without connecting."

— 2026 MCP Roadmap, Transport Scalability section

The essentials: how to get started

Whether you're already using MCP or just getting started — here's what to prepare for based on the 2026 roadmap.

  1. Assess your current position
    If your team is using MCP, check which transport you're on. If it's stdio (local), consider transitioning to Streamable HTTP. If you're already on Streamable HTTP, prepare for the stateless session transition.
  2. Implement server discovery
    If you run your own MCP server, deploy a Server Card at /.well-known/mcp/server.json. Registries and crawlers can automatically discover your server. Registering with the official MCP Registry (registry.modelcontextprotocol.io) is also recommended.
  3. Review the enterprise security checklist
    Check whether OAuth 2.1 auth flows are implemented and whether audit logs are being collected. If not, look into MCP gateway solutions (MintMCP, Composio, etc.).
  4. Leverage managed MCP
    Google Cloud users can take advantage of managed MCP servers that auto-activate starting March 17, 2026. In Microsoft environments, check the MCP connector in Copilot Studio.
  5. Consider joining a Working Group
    If you want to influence MCP's direction, join a Working Group. The Enterprise WG in particular is still in its early stages, so your participation can have a big impact.

Note: "On the Horizon" items

Trigger/event-based updates, streaming result types, and advanced security/authorization work are classified as "On the Horizon." They're important but lower priority than the 4 core areas for now. SEPs in these areas face a higher justification bar.