In the print dialog, choose “Save as PDF”.
Adservio

The Model Context Protocol: Beyond the Hype, the Standard for AI Agents

Architecture, 2026 specification, official registry, security: how the Model Context Protocol went from hype to the production standard for AI agents.

ADSERVIO INSIGHTS · AI AGENTS

CATEGORYAI Agents
READING TIME9 min
DATE29 October 2025
FORMATAdservio Insights article
CONTACThello@adservio.fr

KEY POINTS

  • Launched by Anthropic in November 2024, the Model Context Protocol (MCP) became the de facto standard in 2026 for connecting AI models to external systems, through a client-server architecture built on JSON-RPC 2.0.
  • The ecosystem has changed scale: more than 10,000 public servers listed in the official registry, SDKs downloaded massively every month, and roughly four in ten organizations running MCP servers in production.
  • The stable specification dates from November 25, 2025; the July 28, 2026 revision brings a stateless architecture, a negotiated extensions framework, and MCP Apps for interactive interfaces.
  • Governance moved in late 2025 to the Agentic AI Foundation, hosted by the Linux Foundation and co-founded with OpenAI and Block, a neutrality that brings its own trade-offs.
  • MCP replaces neither RAG nor data governance: for simple cases a direct API is enough; for the rest, an internal registry, permissions, and human oversight remain essential.

SECTION 1

From Hype to Infrastructure: Where the Model Context Protocol Stands in 2026

One of the biggest challenges in AI development remains connecting data sources to LLMs. Organizations have come to realize the value of their unstructured data, documentation, content repositories, the entire corporate 'junk drawer',but building a reliable bridge between those sources and the models remains difficult. That is precisely the problem the Model Context Protocol (MCP) set out to solve.

In 2025, MCP dominated conversations in AI and software development circles, to the point that some saw it as little more than carefully cultivated hype. By mid-2026, the debate is settled: the question is no longer whether to pay attention, but how to industrialize it properly. This article takes stock of what the protocol has become, its architecture, its ecosystem, its real risks, and how to adopt it without dogmatism.

The numbers show the scale of the shift: the ecosystem exceeds 10,000 active public MCP servers, the official Python and TypeScript SDKs total tens of millions of downloads every month, and 2026 industry surveys estimate that roughly four in ten software organizations already run MCP servers in production, in limited or broad fashion. The protocol is supported across the platforms of Anthropic, OpenAI, Google, Microsoft, and AWS.

SECTION 2

MCP Architecture: Client-Server, JSON-RPC 2.0, and Standardized Primitives

Launched in November 2024 by Anthropic, the Model Context Protocol is an open standard that defines how applications provide context and tools to AI models, whether Claude Sonnet 5 and Opus 4.8, GPT-5.6, or the Gemini models. The established metaphor, used in the official documentation, calls MCP 'the USB-C of AI': imperfect, but telling for grasping the protocol's role.

The protocol follows a client-server architecture and relies on JSON-RPC 2.0 messages. A host, conversational assistant, IDE, autonomous agent, embeds an MCP client that talks to servers exposing three main primitives: tools the model can invoke, resources it can read, and reusable prompts. Originally developed as an internal tool to improve Claude's interactions with external systems, it was opened up to standardize AI-to-tool communication across the industry.

Before MCP, every data source required a custom connector. Fragmented, redundant integrations were the norm, making AI products slow and costly to build, the famous 'N models times M tools' problem, which the protocol reduces to a sum of standardized integrations.

### The 2025-11-25 Specification, the Ecosystem's Stable Foundation

The current stable version of the specification, published on November 25, 2025, consolidated OAuth authentication, streamable HTTP transport, and the elicitation mechanisms that let a server request additional information from the user mid-task. This is the revision that most SDKs, platforms, and enterprise servers target today.

### The 2026-07-28 Release Candidate: Stateless and Extensible

The next revision, whose final version is expected on July 28, 2026, marks an engineering turning point: the protocol becomes stateless, session information travels in the metadata of every request, allowing any request to land on any server instance, a prerequisite for large-scale deployments. It also introduces a framework of extensions negotiated between client and server, including MCP Apps, which allows interactive HTML interfaces rendered in a sandbox. Every feature now follows an explicit lifecycle, with at least twelve months between deprecation and removal.

SECTION 3

MCP in Practice Across the Software Development Lifecycle

To understand why MCP prevailed, nothing beats an applied scenario. Imagine a customer service AI assistant: the more sources it can access, internal knowledge base, CRM, messaging, the more contextualized and relevant its answers. MCP makes connecting these systems much faster for the development team, with no proprietary connector to write or maintain for each combination.

### Documents, Code, and Cloud: Three Proven Families of Use Cases

At Adservio, we make particular use of MCP across the software lifecycle. Document interaction: assistants work directly with files, creating, reading, editing, seamlessly. Code development and review: agents retrieve pull request details, analyze changes, generate review summaries, and archive them in the team's tools. Cloud integration: specialized MCP servers make it possible to run serverless functions, consult up-to-date documentation, or analyze the costs of an AWS or Azure account.

What is new in 2026 is orchestration: agents no longer use one isolated MCP server but chain tools from several servers, observability, ticketing, code repository, within a single workflow. Operations scenarios benefit first and foremost, from context-enriched incident diagnosis to assisted remediation.

@cite:gestion-des-incidents-sensibles-au-contexte-avec-mcp

SECTION 4

MCP Servers and the Official Registry: An Ecosystem Getting Organized

An MCP server is a lightweight program that exposes specific capabilities through the standardized protocol. If MCP is the standard, the definition of how to do something, the server is the tool that actually implements it. Servers exist for AWS and Azure services, GitHub, Atlassian (Confluence, Jira), the major databases, and hundreds of SaaS applications.

### The Official Registry and Enterprise Registries

The official MCP registry, opened in late 2025, lists the metadata of nearly ten thousand public servers and serves as the upstream source for private catalogs. Because that is where enterprise adoption is really decided: IT departments build internal registries with approval processes, version control, and auditing, to prevent each team from installing unverified community servers as needs arise.

Does that mean you always need an MCP server? No. For a simple AI project with a clearly defined context, perhaps purely local, with one or two sources, a direct API integration is often sufficient and an MCP server would be overkill. The protocol becomes relevant once data sources multiply, several agents are involved, or the system runs in a distributed environment, containers, cloud, multi-vendor.

SECTION 5

MCP Security and Governance: The Blind Spots to Address

The attention MCP has received across the industry proves it brings something valuable. But it carries risks and limitations that no team should ignore before a serious deployment.

### Vulnerabilities, Prompt Injection, and Human Oversight

MCP servers are attack targets: an unaudited community server can exfiltrate data, and even a tool's description can carry a prompt injection toward the model. The sampling mechanism, through which a server asks the host model to generate a response, must remain subject to human approval. 2026 best practices mandate an allowlist of verified servers, per-agent permission scopes, and systematic logging of tool calls.

### What MCP Does Not Replace

MCP does not eliminate information retrieval challenges: RAG techniques remain necessary to find the right data at the right time. Nor does it remove the need for governance: being able to connect a source to a third-party LLM does not mean you should. Finally, it makes it very easy to offload application logic to a model, an antipattern that erodes your application's value as well as your control over it.

The protocol's own governance has changed hands: in late 2025, Anthropic transferred it to the Agentic AI Foundation, a neutral foundation hosted by the Linux Foundation and co-founded with OpenAI and Block, with backing from Google and Microsoft. A welcome neutrality that raises its own questions: consensus-driven decision speed, occasionally diverging priorities among contributors, and the risk of proprietary extensions on the margins of the shared core.

@cite:resoudre-les-defis-de-securite-mcp-avec-le-modele

SECTION 6

MCP as a Catalyst for AI-Native Enterprise Architectures

A still underestimated aspect of MCP is its potential to reshape enterprise architecture patterns. Traditional integration was optimized over decades for human-driven applications; MCP provides patterns designed for agents, capable of dynamically discovering an organization's resources, learning how they work, and interacting with them.

> With MCP, we have models purpose-built for AI agents, with the potential to enable a new class of autonomous systems that can dynamically discover, learn about, and interact with enterprise resources without human intervention.

This shift forces architects to rethink governance, security models, and system boundaries: who authorizes an agent to discover a service, with what permissions, and how are its actions audited after the fact? Operations teams are on the front line, because observability and reliability become prerequisites for any serious agentic deployment.

@cite:pourquoi-mcp-est-essentiel-pour-la-sre-pilotee-par-l-ia

SECTION 7

Adopting MCP in 2026: Pragmatism Over Dogmatism

The skeptics of 2025 saw MCP as a successful Anthropic marketing campaign. History proved them wrong on the essentials: OpenAI adopted it as early as March 2025, Google DeepMind confirmed it in Gemini the following month, and the move under the Linux Foundation's umbrella completed its transformation into a neutral, durable standard. But they were right on one point: a protocol, however well designed, does not make an AI strategy.

Our recommendation is pragmatic: start with a use case of measurable value, rely on verified servers through an internal registry, put continuous evaluations of your agents in place, and keep a close eye on the 2026-07-28 revision, its stateless architecture will considerably simplify large-scale deployments and multi-instance architectures.

The field keeps moving fast: interoperability between agent protocols is progressing, and new layers, federated registries, payment extensions, identity standards for agents, are already taking shape. Exploring MCP's opportunities now while staying open to the innovations to come: that is the posture that has served teams best over the past two years, and nothing suggests that will change.

FAQ

Frequently asked questions

What is the Model Context Protocol (MCP)?

MCP is an open standard launched in November 2024 by Anthropic that defines how AI models, Claude, GPT, Gemini, and others, connect to external tools and data sources. It relies on a client-server architecture over JSON-RPC 2.0 and exposes three primitives: tools, resources, and prompts. Since late 2025, its governance has been handled by the Agentic AI Foundation, hosted by the Linux Foundation.

Does MCP replace RAG (retrieval-augmented generation)?

No. MCP standardizes the connection between a model and a data source, but it does not solve information retrieval: RAG techniques remain necessary to find the relevant data. The two approaches are complementary, an MCP server can in fact expose a RAG pipeline as a tool.

When should you use an MCP server rather than a classic API integration?

For a simple project with a well-defined context and few sources, a direct API is usually sufficient. MCP becomes relevant once sources multiply, several agents are involved, or the system runs in a distributed environment, containers, cloud, multi-vendor.

What does the 2026-07-28 revision of the MCP specification change?

It makes the protocol stateless, session information travels in the metadata of every request, enabling scale-out across multiple instances, introduces a framework of negotiated extensions including MCP Apps for interactive interfaces, and formalizes a feature lifecycle with at least twelve months between deprecation and removal.

How do you secure an enterprise MCP deployment?

Four measures are essential: an allowlist of verified servers through an internal registry with approval and auditing, per-agent permission scopes, systematic logging of tool calls, and human approval on sensitive mechanisms such as sampling. Unaudited community servers must be banned from production.

ABOUT ADSERVIO

Adservio is an AI-native digital transformation partner: AI-augmented IT departments, software engineering, DevOps, MLOps, cybersecurity and AI governance.

Let's talk about your project: hello@adservio.fr · adservio.fr/contact