Writing
MCP Might Matter More Than Another Model Release
A model can reason well and still be useless inside a company if it cannot reach the files, repositories and tools where work lives.
Writing
A model can reason well and still be useless inside a company if it cannot reach the files, repositories and tools where work lives.
Notes
Model releases get most of the attention because capability is easy to see. A benchmark moves, a context window grows, or a new modality appears.
The integration problem is less visible. A model can be excellent at reasoning and still be almost useless inside a real company if it cannot reach the files, repositories, databases and tools where the actual work lives.
Anthropic's Model Context Protocol, released four days ago, is aimed at that layer. My interest in MCP is not that it gives Claude another way to call a function. The larger idea is that model applications and external systems may finally get a shared connection contract.
If that works, the protocol layer could matter longer than any individual model release.
Today, every AI product tends to build its own connectors.
A coding assistant needs GitHub access. A research tool needs document stores. An internal assistant needs Slack, Google Drive, Postgres and whatever private systems the company has accumulated. Each application implements authentication, data retrieval, schemas and tool definitions in its own way.
Add another AI client and much of that work gets repeated.
Anthropic describes this directly in the MCP announcement: every new data source currently tends to require a custom implementation. MCP tries to replace that pattern with a common client-server protocol. Data providers expose MCP servers; AI applications connect through MCP clients.
The value of a protocol is that the same integration can become usable by more than one application without being rewritten around each model vendor.
Function calling solved a narrower problem: how does a model request a structured operation from the application that is already hosting it?
MCP moves the boundary outward.
The November specification defines a host, clients inside that host, and independent servers that expose context or capabilities. Communication uses JSON-RPC 2.0, with connection lifecycle and capability negotiation built into the protocol.
Servers can expose three main primitives.
Resources provide context such as files or application data. Prompts expose reusable interaction templates. Tools expose executable operations with names, descriptions and JSON Schema inputs. A client can discover those capabilities instead of requiring every integration to be hard-coded into the application.
There is another interesting direction in the first specification: sampling. An MCP server can ask the client to perform a model generation while the client keeps control over model access and permissions. This means the server does not necessarily need to own an API key or depend directly on one model provider.
That separates three things often bundled together in AI applications: the model, the host application, and the system providing data or actions.
Earlier this year, the conversation around model capability was dominated by larger context windows. Gemini 1.5 made one million tokens feel plausible as a working set. That solves part of the problem, but a context window does not decide where project information comes from.
Something still has to find the repository, query the database, read the current project state and decide what can be exposed to the model.
MCP treats that connection as infrastructure rather than prompt construction.
A standard resource interface means an application can request context from the system that owns it rather than copying everything into a proprietary connector format. The initial protocol supports capability negotiation and resource-change notifications, which points toward state that can be discovered and updated rather than pasted once into a prompt.
For me, that is a better abstraction than treating "context" as a larger text box.
The same pattern maps well to creative and technical production.
Imagine a 3D pipeline with Blender scenes, an asset database, render jobs, project documentation and an engine build system. I would not want one giant AI integration that knows the internal API of every component.
I would rather expose narrow capabilities at the boundaries.
An asset server could provide asset metadata and validation tools. A render server could expose job status and submission operations. A project server could provide naming rules, export presets and documentation. A Blender-side integration could expose controlled operations where direct scene access is needed.
The model application would then consume those capabilities through one protocol instead of owning every integration itself.
Someone still has to define what validate_asset means, which files the model may access, or whether an export operation is destructive. MCP standardises the connection; it does not understand the production pipeline for us.
A useful connector can become part of the infrastructure rather than part of one chatbot.
The MCP specification explicitly cites the Language Server Protocol as inspiration.
That comparison makes sense.
Before LSP, editor vendors and language-tool authors often had to build custom integrations with each other. A shared protocol separated the editor from the language server. One language implementation could then work across several compatible editors.
MCP is trying to create a similar boundary between AI applications and context providers.
MCP is only days old, and standards become valuable through adoption, not specification quality alone. There is no guarantee that model vendors and software companies will converge on it. The architectural target, though, is clear: reduce the number of pairwise integrations between models and software.
I would not design a large production platform around the assumption that MCP is already a settled standard.
The November specification says authentication and authorisation are not part of the core protocol. Clients and servers can negotiate their own strategies. The specification places consent, access control and tool safety on implementers rather than pretending the protocol can solve them automatically.
A server that can read a repository or execute a database operation creates a real security boundary. External content can contain hostile instructions. Permissions need to be narrower than "the model can access this application." Audit logs, user confirmation and deterministic validation still matter.
Transport is early as well. The first specification defines local stdio connections and HTTP with Server-Sent Events, while warning implementers about authentication and network exposure for remote servers.
So I see MCP as a promising interface definition, not finished infrastructure.
If MCP or something with the same architecture gains adoption, I think one consequence will be more important than easier integrations: model choice becomes less tightly coupled to the rest of the system.
Today an AI application often accumulates model-specific tool definitions, connectors and context-loading logic. Switching the reasoning model can mean rebuilding parts of the surrounding stack.
A common context protocol could move those integrations outside that dependency.
The asset system exposes its capabilities once. The database exposes its resources once. Different compatible AI hosts can consume them. The model inside the host can change without forcing every data source to change with it.
That is why I think MCP might matter more than another incremental model release.
Models will keep improving, and I expect we will replace them frequently. Infrastructure changes more slowly; a good protocol can sit underneath several generations of models.
Four days after release, it is far too early to call MCP a standard in practice. Anthropic has launched the specification, SDKs, Claude Desktop support and example servers, while Block and Apollo are listed as early adopters and several developer-tool companies are working with it. That is enough to test the architecture, not enough to prove the ecosystem.
Still, the direction makes sense to me.
The model race improves the intelligence inside the system. MCP is trying to standardise how that intelligence reaches the systems where the work actually exists.
If AI becomes an execution layer across software, that connection layer may turn out to be the more durable technology.
More