> IMAGE PROMPT (HERO): Close-up of a developer's hands typing on a mechanical keyboard in a dimly lit home office, multiple terminal windows open on screen showing JSON data streams, soft morning warmth, photorealistic editorial, mild sensor grain, documentary texture, no text, no logos.


Anthropic Built the Highway. Then Let Anyone Drive Without a License.

When Anthropic released the Model Context Protocol (MCP) in November 2024, they presented it as a minor technical specification. No fanfare. No keynote. Just a GitHub repo and a blog post. Eighteen months later, the protocol is the backbone of hundreds of thousands of AI installations worldwide — and an attack surface that security firm OX Security describes as "the mother of all AI supply chain attacks" (OX Security, April 2026).


MCP Became AI's USB-C Standard. Then 200,000 Servers Got Compromised in April. - Bilde 1

What Exactly Is MCP?

MCP is a JSON-RPC 2.0-based protocol. Simply put: it standardizes the conversation between an AI client (like Claude or Cursor) and an external tool or data source.

Think of it as USB-C for AI. Before MCP, every developer had to write custom integration code for every tool. With MCP, the interface is always the same.

The server exposes three types of primitives:

  • Tools — functions the AI model can call directly
  • Resources — data the model can read
  • Prompts — pre-built templates for specific tasks

The client exposes two types of primitives:

  • Sampling — the server can ask the client to make a new LLM call
  • Roots — the server can query which files or URIs the user has authorized

This makes MCP more than a simple API wrapper. It is a bidirectional communication framework where servers can actively direct client behavior.


| COMPARISON TABLE: MCP vs. Traditional API Integration |

FeatureTraditional APIMCP
Integration codeCustom per toolStandardized once
DirectionOne-way (client asks server)Bidirectional (server can direct client)
AI contextNo built-in supportNative, with Sampling and Roots
AuthenticationOAuth/API key (varies)OAuth 2.1 (specified mid-2025)
TransportHTTP/RESTstdio, Streamable HTTP
Time to integrateWeeks per integrationHours per integration
Security maturityMatureDeveloping


From Anthropic to Linux Foundation in 13 Months

> 🕐 TIMELINE

>

> November 2024 — Anthropic launches MCP as an open specification. Support in Claude Desktop from day one.

>

> Mid-2025 — OAuth 2.1 specified for remote transport. SSE transport marked as deprecated. Streamable HTTP becomes recommended standard.

>

> December 2025 — Anthropic donates MCP to the Linux Foundation under the Agentic AI Foundation (AAIF). Founding members: Anthropic, Block, and OpenAI. Google, Microsoft, AWS, Cloudflare, and Bloomberg declare support. SDK downloads pass 97 million per month.

>

> April 15, 2026 — OX Security publishes advisory "The Mother of All AI Supply Chains." 200,000 servers potentially vulnerable. 14 CVEs assigned. Anthropic responds: "expected behavior."

>

> May-June 2026 — MCP Tasks, A2A (Agent-to-Agent), and Capability Attestation announced as next-generation extensions under AAIF.

The handover to the Linux Foundation was not symbolic. It signaled that MCP no longer belongs to Anthropic — it belongs to the industry. Under AAIF now also sit goose (Block's agent runtime) and AGENTS.md (OpenAI's standard format for agent instructions). It is an attempt to build shared infrastructure for agent-based AI, regardless of which model runs under the hood (itecs.ai, 2026).


The Numbers Behind the Hype

> 📊 KEYFIGURE

>

> 150 million+ total SDK downloads as of April 2026

>

> 10,000+ active public MCP servers globally

>

> 6 major platforms with first-class support: ChatGPT, Claude, Gemini, Microsoft Copilot, Cursor, VS Code

The growth is raw. From zero to infrastructure in under eighteen months. But the numbers hide a problem: according to analytics firm Rapid Claw, 52 percent of all MCP servers are inactive. And 86 percent run on developer laptops — not in production environments with proper security. Only five percent of servers are found in actual production systems (Rapid Claw, via birjob.com, 2026).


> "200,000 servers potentially compromisable. Anthropic called it expected behavior."

> — OX Security advisory, April 15, 2026


The Security Crisis Nobody Wanted to Own

On April 15, 2026, OX Security published a technical advisory with a title that left little to the imagination: "The Mother of All AI Supply Chains."

The problem: the SDKs for Python, TypeScript, Java, and Rust accept commands and arguments that are passed directly to subprocess calls without sanitization. An attacker controlling an MCP server can in practice execute arbitrary code on the client machine.

OX Security estimated that 200,000 servers were potentially vulnerable, of which 7,000 were publicly exposed on the open internet. Fourteen CVEs were assigned. Among the affected products: LiteLLM, LangFlow, Windsurf, Cursor, Flowise, DocsGPT, and GPT Researcher (OX Security, pasqualepillitteri.it, 2026).

Anthropic's response? It was characterized as "expected behavior" — not a bug. A design decision.

It triggered fury in the security community.


> 🔍 FACT BOX: The Four Biggest Security Risks in MCP

>

> 1. Tool Poisoning — A malicious server can alter its own tool schema between sessions. Since MCP has no built-in version pinning, the client does not detect the change.

>

> 2. Supply Chain Attacks — MCP servers are distributed via npm and PyPI. A compromised package spreads automatically to all users. The risk is exponentially higher than traditional packages because servers run with elevated privileges.

>

> 3. Authentication Gap — Even though OAuth 2.1 is specified for remote transport, there is no standardized authentication framework across all MCP implementations.

>

> 4. OWASP Classification — MCP-specific attacks are now cataloged as MCP04:2025 in OWASP's AI security framework (OWASP / examcert.app, 2026).


Who Is Dropping MCP — and Who Is Holding On?

Perplexity AI took a public step back. The company's own analysis showed that MCP integrations consumed 72 percent of the available context window — a performance cost they were unwilling to pay (Perplexity, via birjob.com, 2026).

But for most major players, the alternative is worse than the problem. Block and Sourcegraph have responded to the security challenges by building internal MCP gateways — dedicated proxies that handle authentication, logging, and rate limiting before traffic reaches individual servers. Vendors including Zuplo, MintMCP, and Stackone now sell such enterprise solutions commercially.

Anthropic's own guidance from November 2025 points in a different direction: code execution should be the primary mode for AI data consumption — not reading static documents. Performance benchmarks reportedly show dramatic improvement when agents are allowed to write and run code rather than process raw text (anthropic.com, 2025).


> 💡 HIGHLIGHT

>

> What Comes After MCP? Three concepts dominate the 2026 conversation:

> - MCP Tasks — support for long-running, asynchronous tasks. Confirmed by Anthropic's David Soria Parra.

> - A2A (Agent-to-Agent) — protocol for direct communication between agents, under the same Linux Foundation umbrella as MCP.

> - Capability Attestation — signed manifests that cryptographically prove what a server can actually do, designed to solve the tool poisoning problem.


What Does This Mean for You?

If you are a developer using MCP servers today: update all SDKs immediately, pin tool versions explicitly, and never run unknown MCP servers with administrator privileges.

If you are an enterprise architect: an internal MCP gateway is not a luxury — it is the minimum requirement for responsible operations.

If you just want to understand why everyone is talking about MCP: think of it as the sound card in your computer. You never think about it. Until it stops working.


BOTTOM LINE

MCP is real infrastructure, not hype. The protocol solved a genuine problem — AI agents needed a common language to communicate with the world — and the industry responded with massive adoption. But growth came faster than the security model. OX Security's April 2026 findings are not an argument against MCP. They are an argument for taking it seriously enough to secure it properly. The Linux Foundation now holds responsibility. The next twelve months will determine whether MCP becomes the internet's next SSL layer — or the next Log4j.


Verified against 10 open primary sources.

> IMAGE PROMPT (BODY): Wide-angle shot of a modern open-plan tech office, rows of monitors showing network topology diagrams and code, overcast Nordic daylight through floor-to-ceiling windows, clean overcast daylight, photorealistic editorial, documentary texture, no text, no logos, empty chairs suggesting urgency and late hours.