TechnologyMay 26, 20265 min read

MCP Is Becoming the USB Standard for AI Agents — And Every Company Is Scrambling to Adopt It

Anthropic's Model Context Protocol went from a technical spec to the de facto standard for how AI agents connect to the world — in under 18 months. Here's what MCP actually is, why it won, and what the security risks mean for your stack.

Alex Chen

AI Infrastructure Reporter

Share:

In November 2024, Anthropic published a technical specification called the Model Context Protocol — MCP — and described it as a standardized way for AI models to access data, tools, and services. The ambition was clear: make MCP the universal connector between AI agents and everything else.

Eighteen months later, that ambition has largely materialized. The New Stack's Richard MacManus called running an MCP server "almost as popular as running a web server." The Linux Foundation now stewards the protocol through a newly founded Agentic AI Foundation. And nearly every major AI tooling company has either adopted MCP natively or built MCP compatibility into their stack.

Understanding why MCP won — and what its growing adoption means — is now table stakes for anyone building in the AI agent space.

The Problem MCP Was Built to Solve

Before MCP, integrating an AI model with an external API was unreliable by default. Models lacked the structured schema information needed to make sense of API responses. Integrations failed silently, produced wrong outputs, or required heavy custom prompt engineering for each new tool connection.

As Sagar Batchu, CEO of Speakeasy, explained: "Until MCP arrived, integrating an API with an AI model had been challenging. MCP solves this by structuring API interactions in a way that AI can understand, making integrations more reliable."

MCP works through a client-server model. An MCP server exposes tools, resources, and prompts in a standard format. An AI agent acting as an MCP client calls those tools, interprets the results, and takes next actions. The spec is open and model-agnostic — it doesn't matter whether the agent is running on Claude, GPT-5, Gemini, or a local model. If it speaks MCP, it can talk to any compliant server.

The result: connecting an AI agent to a CRM, a code repository, a database, or a proprietary internal tool no longer requires building a custom integration from scratch each time. You build an MCP server once; any agent that supports the protocol can use it.

Why It Won So Fast

A few structural forces accelerated MCP's adoption beyond what most protocols achieve:

Anthropic shipped first and opened it. By releasing MCP as open source and immediately encouraging third-party server development, Anthropic seeded a community ecosystem before competitors could establish alternatives. By mid-2025, hundreds of MCP servers existed for tools ranging from GitHub to Slack to Postgres.

The timing matched agentic demand. MCP arrived precisely as enterprise interest in AI agents moved from experimentation to deployment. Teams building production agents needed a reliable, documented way to give agents tool access. MCP was there.

Platform convergence. GitHub, VS Code, Cursor, Windsurf, and nearly every developer tooling company added MCP support in 2025. When the tools developers already use daily support a protocol, adoption follows naturally.

The Linux Foundation's formal stewardship of MCP through the Agentic AI Foundation — announced in late 2025 — is the institutional signal that the protocol has crossed from startup experiment to infrastructure standard.

The Security Risks No One Wants to Ignore

MCP's rapid, decentralized adoption created a meaningful security surface that the community is still working through.

Gil Feig, CTO of Merge, was direct about what happened: "Developers learned the hard way that rapid adoption can pose serious security and reliability challenges. MCP's flexible architecture created a Wild West of potentially untrusted code, where community-published servers could be backdoored or abandoned, and blanket access to sensitive services like email and CRMs became common."

Three risk categories have emerged as the most significant:

Untrusted MCP servers. The community-published server ecosystem has no consistent vetting process. A server that claims to integrate with your payroll system could be doing anything with the credentials and data it receives.

Prompt injection via MCP. Because MCP servers return text that gets injected into the agent's context, a malicious server — or a compromised legitimate one — can craft responses designed to manipulate the agent's next actions. GitHub has begun building active security scanning specifically for MCP-connected agents.

Overpermissioned access. Many MCP configurations grant agents broader access than any single task requires. An agent that needs to read calendar data probably shouldn't have the same MCP server token as one that can send emails on your behalf.

The mitigations are similar to API security fundamentals: principle of least privilege, verified server provenance, audit logging for agent actions, and sandboxed execution environments.

What It Means for Teams Building Now

If you're building AI agents in 2026, MCP is likely in your stack whether you chose it deliberately or not. The framework you're using — LangChain, Claude SDK, OpenAI Agents, Google ADK — almost certainly has MCP support built in.

What that means practically:

  • For tool integrations: look for existing MCP servers before building custom integrations. The ecosystem is wide enough that you'll find what you need for common services.
  • For security: audit what MCP servers your agents are connecting to and what permissions each server has. Community servers need the same scrutiny you'd give any third-party dependency.
  • For context costs: be aware that MCP operations are token-expensive compared to direct API calls. Benchmarks show MCP averaging 32,000–82,000 tokens per operation versus 200 tokens for an equivalent CLI command. For production pipelines where token efficiency matters, that gap is meaningful.

MCP is infrastructure now. Like any infrastructure standard — HTTP, REST, OAuth — the debate about whether to adopt it has become largely academic. The decision facing most teams is how to use it responsibly, not whether to use it at all.

#mcp#model-context-protocol#ai-agents#anthropic#linux-foundation#api#agentic-ai#standards

Alex Chen

AI Infrastructure Reporter · The Neural Dispatch

Covering the intersection of AI, engineering, and the future of building. We dig into what the tools actually do, how builders are using them, and what it means for the industry.

Keep reading

Related dispatches