From Shubhi K | Product & Market Analysis
MCP and Agent Interoperability: The Standards Fight Deciding the Stack
On this page
The Model Context Protocol launched in November 2024 as one company's open-source experiment. By 2026 it had roughly 97 million monthly SDK downloads, over 9,400 public servers, native support from every major model provider, and a new home at the Linux Foundation. Standards fights decide who owns the integration layer, and this one was settled faster than almost anyone expected.
Key takeaways
- Adoption is genuinely large. Roughly 97 million monthly SDK downloads and over 9,400 public servers, with unofficial directories indexing considerably more.
- Governance moved out of one company's hands. Anthropic donated MCP to the Agentic AI Foundation under the Linux Foundation in December 2025, co-founded with Block and OpenAI.
- The integration problem it solves is real and large. Enterprises manage an average of 1,061 applications with only 29% integrated, per MuleSoft research.
- The security questions are open. Connecting agents to third-party tool servers extends trust to code nobody reviewed, and no standard fixes that by itself.
What MCP actually is, without the jargon
The Model Context Protocol is a standard way for an AI application to connect to external tools, data sources and services. Instead of writing a bespoke integration for every combination of model and system, both sides implement one protocol.
It is worth being precise about what it is not, because three adjacent concepts get conflated constantly.
Function calling is a model behaviour, meaning the model's ability to decide it needs a tool. Retrieval augmented generation is a technique for grounding answers in a knowledge base. MCP is neither. It is an interoperability layer that sits above existing APIs, uses function calling as the invocation mechanism, and can expose retrieval as one of its resources.
The problem it addresses is unglamorous and expensive. Enterprise AI projects fail on system access far more often than on model quality, and every custom connector adds cost, risk and maintenance.
The adoption numbers, with their caveats
Native support arrived from every major model provider, including Anthropic, OpenAI, Google DeepMind and Microsoft. That combination of open governance and universal vendor support is unusual and it is the reason the standards question resolved quickly.
Concrete deployments exist rather than just intentions. One large payments company deployed company-wide with all servers built in-house and reported substantial token reduction. One observability vendor reported that close to 20% of monthly interactive queries were being made by agents rather than people.
Why the Linux Foundation donation mattered
In December 2025, Anthropic donated MCP to the Agentic AI Foundation, a directed fund under the Linux Foundation co-founded with Block and OpenAI.
That move addressed the objection every enterprise architect raises about a standard controlled by one vendor. A protocol whose direction can be changed unilaterally by a company you also buy from is not a standard, it is a product decision you have no vote in.
Vendor-neutral governance changes the risk calculation for a buyer materially. It also changed how the roadmap works. The 2026 roadmap, published in March by the lead maintainer, is organised around working groups and priority areas rather than release milestones, which is what community governance looks like in practice.
The four priority areas are transport scalability, agent communication, governance maturation and enterprise readiness. Those are the concerns of a project running in production, not one seeking adoption.
What the July 2026 specification changed
The most consequential technical change was a move to a stateless architecture, removing transport-session overhead and making MCP behave like an ordinary web workload: cacheable, routable and horizontally scalable.
The release also added support for long-running tasks and enterprise-managed identity. Both are unglamorous and both are prerequisites for anything running at scale inside a large organisation.
What is commercially at stake
Protocol control determines who owns the integration layer, and the integration layer is where switching costs live.
The row worth watching is the last. Companies whose business was building and maintaining connectors between systems now face a standard that commoditises exactly that work. Some will move up the stack into orchestration and governance. Others will not.
The row worth understanding if you are a software vendor is the second. Exposing your product through a standard protocol means every agent can reach it, which is distribution. It also means your integration depth stops being a differentiator, which was frequently the thing keeping customers from leaving.
The risks nobody has solved
Three, and they are all real rather than theoretical.
| Risk | What it looks like in practice | Who is responsible |
|---|---|---|
| Supply chain exposure | An agent connects to a third-party server running code nobody reviewed | Nobody, by default. This must be assigned. |
| Visibility gap | Agents act on systems with no readable record of what they did or why | The team deploying the agent, not the protocol |
| Tool overexposure | Many connected servers fill the context window and widen the blast radius | Whoever curates the connected tool set |
| Namespace and registry trust | Server names are not guaranteed to belong to the organisation they suggest | Registry governance, still maturing |
Supply chain exposure. Connecting an agent to a third-party tool server extends trust to code you did not review, running with permissions you granted. Adoption has outpaced vetting practice considerably, and there is no standard answer to who checks a server before it is connected.
The visibility gap. The most commonly cited enterprise concern in early 2026 was deploying agents without visibility into what they actually did. A protocol standardises the connection and does not, by itself, produce an audit trail anyone can read.
Tool overexposure. Connecting many servers gives an agent many capabilities and a context window full of tool definitions. That degrades performance and widens the blast radius of any single mistake.
These sit alongside the wider agent governance problem, examined in the analysis of where AI deployments actually succeed. Standardising the plumbing does not standardise the judgement about what the plumbing should be allowed to do.
Why the protocol cannot solve these
A standard defines how systems talk. It does not decide which systems should be allowed to talk, what they may do once connected, or who is accountable when something goes wrong.
Those are governance questions and they sit with the organisation deploying the agent. Treating protocol adoption as a security posture is the specific mistake to avoid here, and it is a common one because standardisation feels like control.
Be careful with the statistics in this category
This deserves its own section because the discipline is unusual and worth crediting.
At least one MCP adoption tracker publicly revised its own article in May 2026, removing claims it could not verify. Among the removed figures was a widely circulated statistic that 78% of enterprise AI teams used MCP in production, along with several named deployment counts.
That correction is more useful than most of the statistics it replaced. It tells you that adoption numbers in this category have been circulating without primary sources, and that at least some of the confident percentages you will encounter were assembled rather than measured.
The figures that survive verification are the ones in this post: SDK download counts, public server registries, the donation to the Linux Foundation, and named vendor deployments. The confident enterprise-penetration percentages generally do not.
What would actually settle this
Three observable things, none of which requires a view on whether AI works.
Direction of seat counts at large customers. If licensed user counts fall across an installed base while revenue holds, the repricing worked. If both fall together, it did not.
Whether consumption revenue grows faster than seat revenue declines. This is the arithmetic the whole strategy depends on and it is visible in segment reporting if you read it carefully.
Whether data migration volumes rise. The system of record argument holds only while moving is expensive. A visible increase in customers actually migrating would indicate the switching cost is falling.
None of these will be announced. All three appear in reported results, quarter by quarter, for anyone willing to track them.
Where this reading is weak
Three problems with the argument above.
Download counts measure developer curiosity, not production deployment. Ninety-seven million monthly SDK downloads is an enormous number and it includes automated builds, experimentation and abandoned projects. Nobody publishes a credible figure for production usage.
Server counts have the same issue. A public registry entry is a published server, not a used one, and the gap between the official count and unofficial directory listings suggests substantial duplication and abandonment.
And a settled standard is not the same as a settled market. Protocol adoption resolves how systems connect. It leaves entirely open who orchestrates agents, who governs their permissions and who captures the value, which are larger commercial questions than the transport format.
Frequently asked questions
What is the Model Context Protocol?
MCP is an open standard that gives AI applications a universal way to connect to external tools, data sources and services. Instead of building bespoke integrations for every combination of model and system, both sides implement one protocol. Anthropic introduced it in November 2024 and donated it to the Agentic AI Foundation under the Linux Foundation in December 2025.
How widely adopted is MCP?
The Python and TypeScript SDKs see roughly 97 million monthly downloads, and there are over 9,400 public servers with unofficial directories indexing more than 17,000. Native support exists from Anthropic, OpenAI, Google DeepMind and Microsoft. Download and registry counts measure developer activity rather than production deployment, and no credible production figure has been published.
Is MCP different from function calling and RAG?
Yes, and the three get conflated constantly. Function calling is a model behaviour, meaning the model's ability to decide it needs a tool. Retrieval augmented generation grounds answers in a knowledge base. MCP is an interoperability layer that sits above existing APIs, uses function calling as the invocation mechanism, and can expose retrieval as one of its resources.
Why did Anthropic give MCP to the Linux Foundation?
To resolve the objection enterprises raise about standards controlled by a single vendor. A protocol whose direction can be changed unilaterally by a company you also buy from is a product decision rather than a standard. The December 2025 donation to the Agentic AI Foundation, co-founded with Block and OpenAI, made governance vendor-neutral and community-run.
What are the security risks of MCP?
Three main ones. Connecting an agent to a third-party server extends trust to code you did not review, running with permissions you granted, and adoption has outpaced vetting practice. The visibility gap, where agents act without an auditable trail, was the most cited enterprise concern in early 2026. And connecting many servers fills the context window with tool definitions while widening the blast radius of any mistake.
Should I trust MCP adoption statistics?
Selectively. At least one adoption tracker publicly revised its article in May 2026 to remove figures it could not verify, including a widely circulated claim that 78% of enterprise AI teams used MCP in production. SDK download counts, public registry numbers, the Linux Foundation donation and named vendor deployments are verifiable. Confident enterprise penetration percentages generally are not.
Where to start this week
If you are considering connecting agents to systems, do one thing before you connect anything.
Write down who reviews a server before it is added, what permissions it receives, and where the record of its actions is kept. Three lines. If you cannot answer all three, you are not ready to connect the first one, and the protocol will not answer them for you.
Start read-only. Reporting, search and draft generation carry limited downside. Add write actions later, with human approval for anything that changes a record, sends a message or moves money.
That sequencing is the conservative recommendation from practitioners running this in production, and it is notably more cautious than most vendor guidance. The reason is simple: a read-only mistake produces a wrong answer, and a write mistake produces a wrong record that other systems then act on.
References
- Model Context Protocol blog, The 2026 MCP roadmap, 9 March 2026. Used for governance structure and priority areas.
- Model Context Protocol blog, The 2026-07-28 specification, July 2026. Used for the stateless architecture change and enterprise identity support.
- Toloka, The future of MCP: 2026 roadmap and enterprise adoption. Used for SDK download figures, server counts and the Linux Foundation donation.
- Synvestable, Model Context Protocol for enterprise: 2026 deployment guide, May 2026. Used for named deployments, the Gartner projection and the CData estimate.
- Digital Applied, MCP adoption statistics 2026, verification update 24 May 2026. Used for the retracted statistics and the caution about unverified figures.
- Coderio, Mastering AI integration: Model Context Protocol, April 2026. Used for the MuleSoft integration research and the distinction from function calling and RAG.
Download and registry counts measure developer activity rather than production deployment. No credible figure for production MCP usage has been published, and several widely circulated enterprise adoption percentages have been publicly retracted by the trackers that published them.
Related reading