The MCP 2026 Roadmap: Everything That's Changing for Developers
Nikhil Tiwari
MCP Playground
TL;DR — Key Takeaways
- Anthropic donated MCP to the Linux Foundation's Agentic AI Foundation in December 2025 — OpenAI, Google, Microsoft, AWS, Cloudflare, and Bloomberg joined as platinum members
- The 2026 MCP roadmap (March 2026) targets four areas: transport scale, agent-to-agent communication, governance maturation, and enterprise readiness
- MCP Apps (January 2026) let tools return interactive HTML interfaces inside chat — sandboxed iframes that work in Claude, ChatGPT, Goose, and VS Code
- Google's A2A protocol is now under the same governance body — complementary to MCP, not a replacement
- MCP hit 97 million monthly SDK downloads and 10,000+ active servers; Pinterest saves 7,000 engineering hours per month using it
The MCP world moved fast in the past few months. The protocol joined the Linux Foundation. The 2026 roadmap dropped in March. MCP Apps shipped in January — and suddenly agents can render interactive UIs inside chat windows. Then Google's A2A protocol joined the same governance body. And the MCP Dev Summit brought 95+ sessions to New York City on April 2–3.
If you blinked, you missed a lot. This article covers every major shift, what each one means in practice, and what you should be building right now.
Why MCP Joining the Linux Foundation Matters More Than You'd Think
Most developers I talk to saw the headline and filed it under "governance stuff." That's a mistake.
When Anthropic donated MCP to the Agentic AI Foundation (AAIF) — a directed fund under the Linux Foundation — in December 2025, the protocol stopped being Anthropic's protocol. It became a neutral, open standard.
The co-founders of the AAIF are Anthropic, Block, and OpenAI. Platinum members include Google, Microsoft, AWS, Cloudflare, and Bloomberg. That means every major AI lab and cloud provider now has a seat at the governance table.
Why does that matter? It's the difference between a proprietary API and HTTP. Proprietary protocols get replaced when their owners pivot. Open standards get entrenched.
MCP joins two other founding projects: goose by Block and AGENTS.md by OpenAI. AGENTS.md has already been adopted by more than 60,000 open-source projects. The agentic AI stack is consolidating around open standards — fast.
AAIF Founding Members at a Glance
The 2026 MCP Roadmap — 4 Priorities You Need to Understand
The official 2026 roadmap dropped in March. The maintainers organized it around four priority areas. Here's what each one means in practice — not just on paper.
1. Transport Scalability
Streamable HTTP gave MCP a production-ready transport. But running it at scale exposed real problems.
When you run multiple server instances behind a load balancer, sessions break. Requests for the same session can land on different instances with no shared state. The Transports Working Group is making Streamable HTTP stateless across instances — defining how sessions are created, resumed, and migrated during scale-out.
They're also standardizing MCP Server Cards — metadata discovery so clients know a server's capabilities before connecting.
2. Agent Communication
Current MCP lets an agent call tools. The 2026 roadmap expands how servers and agents collaborate on multi-step reasoning.
An MCP server won't just expose tools — it will become an autonomous participant that receives tasks, evaluates policy, negotiates scope, and delegates sub-work to peer agents. The hard part is making delegation safe, observable, and reversible.
3. Governance Maturation
The AAIF is establishing working groups for each area of the spec. This means community-driven proposals, conformance testing, and formal review processes — not ad hoc changes from Anthropic's internal roadmap.
4. Enterprise Readiness
OAuth 2.1 with PKCE is now the spec'd auth mechanism for remote MCP servers. The roadmap doubles down on audit logging, policy enforcement, and compliance hooks — the things enterprises need before they'll run MCP in production.
Is your MCP server production-ready?
Check HTTPS, auth, CORS, headers, and injection risks in seconds — free.
Test any MCP server free →MCP Apps — The Protocol Just Went Beyond Text
Until January 2026, every MCP interaction was text in, text out. MCP Apps changed that fundamentally.
Tools can now return rich HTML interfaces that render in sandboxed iframes inside the chat experience. Think: a live data visualization dashboard, an editable design component, a formatted document — all inside the conversation, no tab switching required.
MCP Apps was co-developed with OpenAI and is now part of the protocol spec itself — not a vendor extension. It works in Claude, ChatGPT, Goose (Block), and VS Code.
A concrete example: an MCP tool that previously returned a JSON blob of analytics data can now return an interactive chart the user filters and drills into — directly in chat, without opening another tool.
What this means if you're building MCP servers
Returning structured data is no longer the ceiling for a good tool response. If your server powers dashboards, analytics, or any data-heavy workflow, start thinking about interactive responses instead of plain JSON. The spec now supports it natively.
MCP Meets A2A — Complementary, Not Competing
Google released the Agent-to-Agent (A2A) protocol in April 2025 and donated it to the Linux Foundation in June 2025. It's now under the same AAIF governance as MCP.
The distinction matters: MCP is how an agent talks to tools. A2A is how agents talk to each other.
MCP
Agent → tools, databases, APIs, file systems. Gives one agent access to external capabilities and context.
A2A
Agent → agent. Specialized agents discover each other, delegate sub-tasks, and coordinate results.
Most teams building real systems will use both. A2A doesn't replace MCP — it adds a coordination layer on top for multi-agent workflows.
Because both protocols are now under the same governance body, they'll evolve to fit together. The risk of fragmentation between the two is essentially gone.
Who's Actually Running MCP in Production
The adoption numbers are real and accelerating.
97M
Monthly SDK downloads
10,000+
Active MCP servers
70%
Of large SaaS brands have remote MCP servers
7,000
Engineering hours saved/month at Pinterest
Pinterest published the most detailed public case study. Their engineering team deployed a full MCP ecosystem — domain-specific servers, a central registry, and human-in-the-loop approval for sensitive operations. By January 2025 (their internal launch), it was recording 66,000 monthly tool invocations from 844 active users.
The SaaS adoption list is no longer just early adopters. Slack, GitHub, Salesforce, Stripe, HubSpot, Shopify, Notion, Linear, Figma, and Cloudflare all have official or widely-used remote MCP servers. First-class client support now spans Claude, ChatGPT, Cursor, Gemini, Microsoft Copilot, and VS Code.
This is no longer a promising early-stage protocol. It's infrastructure.
Over 8,000 MCP servers still have no authentication
A February 2026 scan found thousands of publicly exposed servers. Scan yours in seconds.
Scan your MCP server →What Developers Should Be Building Right Now
Given where the roadmap points, here's where to put your time.
Build remote MCP servers, not local ones. The ecosystem is converging on remote, OAuth-secured servers. Local stdio servers are fine for personal tooling but won't scale to real products. Set up Streamable HTTP with OAuth 2.1 PKCE now — it's what the spec prioritizes.
Rethink what a good tool response looks like. MCP Apps means your tools can return interactive UI, not just structured data. If your server powers a dashboard, analytics workflow, or any data-heavy task, interactive responses are now part of the spec.
Design for stateless operation from day one. The roadmap will fix Streamable HTTP session stickiness — but don't wait for the spec fix. Build your server to store session state externally so multiple instances can serve the same client.
Add auth before you go public. With 10,000+ servers in the registry and a growing scan that found over 8,000 unauthenticated servers, this is a live problem — not a future one. A Bearer token check takes under an hour to add. OAuth 2.1 takes a day. Neither is optional for anything customer-facing.
Start watching A2A. You don't need to build with it today, but understanding where it fits — agent-to-agent coordination on top of MCP's agent-to-tool layer — will shape how you architect multi-agent systems in the next 12 months.
The MCP Dev Summit — April 2–3, NYC
95+ sessions from Anthropic, Datadog, Hugging Face, Microsoft, and more. Sessions cover conformance testing, scalable agent systems, MCP at 18 months, and real production deployment lessons. The program is published at the Linux Foundation Events site.
What This All Means
MCP went from an Anthropic experiment to a Linux Foundation standard in under 18 months. The 2026 roadmap is focused on making it hold up in real production: stateless transport, agent-to-agent coordination, enterprise governance, and interactive tool responses.
The developers who get ahead are building remote, authenticated, MCP-Apps-ready servers now — before the spec finalizes these patterns and everyone else catches up.
Ready to test your MCP server against the 2026 spec?
Connect any remote MCP server and inspect its tools, responses, and behaviour — free, no sign-up.
Test MCP Server Free →Sources & Further Reading
- Anthropic — Donating MCP and Establishing the Agentic AI Foundation
- Linux Foundation — AAIF Formation Press Release
- Model Context Protocol Blog — The 2026 MCP Roadmap
- Model Context Protocol Blog — MCP Apps: Bringing UI Capabilities to MCP Clients
- Pinterest Engineering — Building an MCP Ecosystem at Pinterest
- The New Stack — MCP's Biggest Growing Pains Will Soon Be Solved
- GitHub Blog — MCP Joins the Linux Foundation
- MCP Playground — What Is Model Context Protocol?
- MCP Playground — MCP Server OAuth 2.1 Authentication Guide
- MCP Playground — Free MCP Security Scanner
Written by Nikhil Tiwari
15+ years in product development. AI enthusiast building developer tools that make complex technologies accessible to everyone.
Related Resources