VOOZH about

URL: https://thenewstack.io/model-context-protocol-roadmap-2026/

⇱ MCP's biggest growing pains for production use will soon be solved - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2026-03-14 07:00:57
MCP's biggest growing pains for production use will soon be solved
AI / AI Agents / Model Context Protocol / Open Source

MCP’s biggest growing pains for production use will soon be solved

MCP roadmap highlights the priorities maintainers want to solve as the protocol behind AI agents moves into real-world deployments.
Mar 14th, 2026 7:00am by Paul Sawers
👁 Featued image for: MCP’s biggest growing pains for production use will soon be solved
Tri wiranto For Unsplash+

The Model Context Protocol (MCP) has emerged as one of the key building blocks of the agentic AI stack, serving as a common language for models to connect with external tools, files, and business systems.

Want an AI assistant to pull a file from Google Drive, query a company database, check a GitHub issue, or trigger an action in an internal app? That’s the kind of job MCP is meant to handle.

Now, the project’s new 2026 roadmap suggests the maintainers are turning their attention to a harder question: What needs to be fixed before MCP can hold up in real production use?

The path to a shared protocol

MCP first appeared at the tail end of 2024, when Anthropic introduced the protocol to enable AI models to interact with external tools and data sources in a more structured way.

The project’s open source credentials helped it gain traction among developers building AI assistants and agent-style applications. Rather than writing custom integrations for each system, teams could expose those services via MCP servers, allowing models to interact with them using the same protocol.

Over the past year, a growing ecosystem of AI companies and developer platforms has begun adding support for MCP. Anthropic’s own Claude assistants use it to interact with external tools, while other vendors — including OpenAI, Microsoft, Google, and Amazon — have embraced the standard.

But as adoption spreads, so do the operational challenges of running the protocol in more serious environments. To address those growing pains, the project maintainers reviewed a range of potential improvements and identified four priority areas where most development effort and fast-tracked protocol proposals will be focused.

Making MCP easier to run at scale

A recurring issue that has raised concerns among developers involves how MCP handles connections between clients and servers. In its current form, the protocol relies on long-lived, “stateful” sessions, which can make it harder to deploy MCP servers across multiple instances or behind load balancers, since the session state is typically stored on the server handling the connection, rather than shared across machines.

This priority area has been pegged as “transport evolution and scalability.” In plain terms, it means reworking how MCP handles those connections so deployments can scale more easily across distributed infrastructure.

Developers have already run into this limitation when trying to run MCP servers across multiple machines. In one GitHub issue raised back in August, a developer attempting to build a stateless MCP server across multiple pods using Redis reported that the SDK does not provide a reliable way to map client session IDs to the server’s internal event streams. Without that mapping, sessions can’t be resumed if requests are routed to a different server instance — effectively forcing deployments to rely on in-memory state rather than distributed infrastructure.

That issue was later referenced by MCP maintainers in a broader tracking discussion about enabling stateless or near-stateless server architectures.

The roadmap suggests addressing these kinds of limitations through two main changes. First, evolving MCP’s transport and session model so that servers can scale horizontally without maintaining state on a single machine. And second, introducing a standard metadata format that servers can expose — likely via a .well-known endpoint — so tools and registries can discover what an MCP server does without first establishing a live connection.

David Soria Parra, a member of technical staff at Anthropic and MCP lead maintainer, said the goal is to improve how the existing transport works rather than introduce new ones.

“One thing we want to be explicit about: we are not adding more official transports this cycle but evolve the existing transport,” Parra writes. “Keeping the set small is a deliberate decision grounded in the MCP design principles.”

No task too small

The second-priority issue concerns “agent communication,” which refers to how MCP handles longer-running work triggered by AI agents.

In its current form, the protocol allows clients to start asynchronous Tasks, enabling agents to launch work in one request and retrieve the result later. But early production use has exposed gaps around how those tasks should behave — particularly how failed jobs should be retried and how long completed results should remain available.

Some of those questions surfaced during work on the Tasks feature itself. In a GitHub pull request defining how Tasks should operate, Luca Chang, a software engineer at AWS and MCP maintainer, described the pattern as allowing agents to start work in one request and retrieve the result later.

While that approach makes it easier for agents to run longer operations, it also raises questions around how those jobs are retried when something goes wrong and how long their results should persist.

The roadmap proposes clearer definitions around those lifecycle rules so MCP systems can manage agent-driven tasks more reliably.

Parra also notes that some of these gaps only become visible once developers begin using a feature in real production environments.

“This is the kind of iteration you can only do once something is deployed and tested in the real world,” he said. “We plan to take the same approach with other parts of MCP: ship an experimental version, gather production feedback, and iterate.”

Reducing bottlenecks in MCP governance

Governance is also firmly on the agenda. As MCP adoption spreads across companies and developer communities, maintainers say the project needs clearer decision-making structures and contributor pathways.

This “governance maturation” priority area essentially focuses on refining how protocol changes are proposed and reviewed.

The goal, ultimately, is to ensure that MCP can continue to grow without relying on a small group of core maintainers to review every change as the ecosystem expands. At present, every MCP proposal — known as a SEP (Specification Enhancement Proposal) — must be reviewed by the full group of core maintainers, regardless of the area it affects.

“That’s a bottleneck,” Parra said. “It slows down Working Groups that already have the expertise to evaluate proposals in their own area.”

Preparing for the enterprise

The final priority focuses on what the roadmap calls “enterprise readiness,” a familiar phase for many open-source infrastructure projects as they begin to see wider adoption across the industry.

As organizations start integrating MCP into internal systems, they tend to encounter a predictable set of operational requirements — including audit trails, authentication tied to corporate identity systems, gateway controls, and configuration that can move cleanly between environments.

Unlike the other priorities, this area is intentionally less defined. The roadmap notes that enterprise readiness remains one of the least prescriptive parts of the current work plan, in part because the maintainers want input from the teams encountering these issues first-hand.

At present, there is no dedicated enterprise working group within the MCP project, for instance. Instead, the maintainers are encouraging contributors with experience in enterprise infrastructure to help shape these efforts.

“We want the people experiencing these challenges to help us define the work,” Parra said.

On the horizon

Collectively, the four priorities highlight the kinds of issues that come to light once a piece of infrastructure moves beyond its embryonic stages. In MCP’s case, that means making the protocol easier to operate across multiple machines, clarifying how agents manage longer-running work, establishing clearer governance, and getting things ship-shape for the enterprise.

This list, however, is not exhaustive. The roadmap also highlights several areas “on the horizon,” including triggers and event-driven updates, new result types, and deeper work around security and authorization.

Those topics, while not an official “priority,” will likely move forward through community-led working groups rather than direct maintainer focus during this cycle.

“We’re focused on a limited set of items, but we still want protocol exploration to continue at a good pace,” Parra wrote.

For now, the emphasis is on tightening the core of the protocol — and inviting the broader developer community to help shape what comes next.

TRENDING STORIES
Paul is an experienced technology journalist covering some of the biggest stories from Europe and beyond, most recently at TechCrunch where he covered startups, enterprise, Big Tech, infrastructure, open source, AI, regulation, and more. Based in London, these days Paul...
Read more from Paul Sawers
SHARE THIS STORY
TRENDING STORIES
TNS owner Insight Partners is an investor in: Anthropic, OpenAI.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.