2025 in Review: The Protocol Year
A retrospective on 2025 as the protocol year: MCP became the cross-vendor interface for tools, Google donated A2A to the Linux Foundation, DeepSeek-R1 and Apache-2.0 releases commoditized reasoning, and coding agents reached production. We review the verified milestones and outline what 2026 must solve: agent identity, evaluation infrastructure, and simulation.
The Interoperability Problem
In December 2024, every connection between a language model and an external system was custom code. Each vendor shipped its own function-calling format, its own authentication handling, its own framework. Connecting N models to M tools meant building and maintaining N×M integrations. The models were capable enough for real work; the wiring around them was not. That was the state of the field twelve months ago.
2025 changed the wiring more than it changed the models. The defining events of the year were protocol events: specification releases, foundation donations, registries, adoption announcements. We call it the protocol year. This retrospective records what happened, with dates and numbers, and states plainly what remains unsolved as of October 2025.
MCP Became the Default Interface
Anthropic released the Model Context Protocol on 25 November 2024 as an open standard for connecting AI applications to tools and data. On 26 March 2025, OpenAI adopted it: support landed in the Agents SDK immediately, with the ChatGPT desktop app and Responses API announced to follow. Microsoft had added MCP to Copilot Studio the week before. Google DeepMind confirmed Gemini support in April. Within five months, every major lab had adopted a competitor's protocol. That does not happen for marketing reasons; it happens when the cost of fragmentation exceeds the cost of cooperation.
The specification matured in step. The 2025-06-18 revision classified MCP servers as OAuth 2.1 resource servers, added elicitation and structured tool output, and removed JSON-RPC batching. On 8 September 2025, the official MCP Registry launched in preview at registry.modelcontextprotocol.io — an open catalog and API for publicly available servers. Scope matters here: MCP standardizes transport, capability discovery, and authorization. It does not certify that a server is well-built, maintained, or safe. The registry lists servers; it does not vet them.
A2A Moved to Neutral Ground
Google announced the Agent2Agent protocol on 9 April 2025 with more than 50 technology partners. A2A complements MCP rather than competing with it: MCP connects one agent to its tools; A2A lets autonomous agents discover each other through Agent Cards, exchange messages, and coordinate long-running tasks across vendor and framework boundaries.
On 23 June 2025, at Open Source Summit North America, Google donated the A2A specification, SDKs, and developer tooling to the Linux Foundation. Amazon Web Services, Cisco, Microsoft, Salesforce, SAP, and ServiceNow formed the project alongside Google; more than 100 companies back the protocol. Neutral governance removes a real enterprise adoption blocker — no one wants to build on a single vendor's agent protocol. The honest caveat: production A2A deployments remain rare compared to MCP servers. The protocol is ready. Most multi-agent architectures are not.
Reasoning Became a Commodity
In December 2024, OpenAI's o1 was the only production-grade reasoning model, priced at $60 per million output tokens. On 20 January 2025, DeepSeek released R1 under the MIT license: o1-comparable results on math and code benchmarks at $2.19 per million output tokens — roughly 96% cheaper — with six distilled variants from 1.5B to 70B parameters released alongside.
The rest of the year confirmed the pattern. Anthropic shipped extended thinking in Claude 3.7 Sonnet in February. Google shipped Gemini 2.5 Pro in March. OpenAI shipped o3 in April and the Apache-2.0 gpt-oss models in August. Alibaba released Qwen3 under Apache 2.0 in April. Reinforcement-learned chain-of-thought went from competitive moat to free download in under nine months. Reasoning is no longer a differentiator; it is a line item.
| Model | Released | Weights | Output price per 1M tokens |
|---|---|---|---|
| OpenAI o1 | 5 Dec 2024 | closed | $60.00 |
| DeepSeek-R1 | 20 Jan 2025 | MIT | $2.19 |
| Qwen3-235B | 29 Apr 2025 | Apache 2.0 | self-hosted |
| gpt-oss-120b | 5 Aug 2025 | Apache 2.0 | self-hosted |
Agents Entered Production
Coding agents crossed from demo to daily tool. Anthropic moved Claude Code to general availability on 22 May 2025. OpenAI launched Codex as a cloud software-engineering agent in May. GitHub shipped a Copilot coding agent that takes assigned issues and opens pull requests. Long-running, multi-step, terminal-native agents became a normal part of software delivery.
The measured picture is more sober than the announcements. METR's randomized controlled trial, published 10 July 2025, observed 16 experienced open-source developers working on their own mature repositories with early-2025 tools. Developers forecast a 24% speedup. Measured result: tasks took 19% longer with AI assistance. The gap between perceived and actual productivity is itself the finding.
Our reading: agents deliver where output can be verified cheaply — greenfield code, boilerplate, tests, parallelizable migrations. In complex legacy systems, verification cost can exceed generation savings. Production agent value is real, but it is measured per workflow, not assumed per tool.
What the Protocols Do Not Solve
Identity is unsolved. MCP's OAuth 2.1 flow authenticates a client to a single server. There is no standard way to express that agent X acts on behalf of user Y with delegated scope Z, and no standard way to propagate that delegation across a chain of agents calling agents. A2A Agent Cards declare what an agent can do, not whether it should be trusted to do it.
Evaluation is unsolved. Public benchmarks saturate within months and predict little about a specific agent on a specific workflow. Most teams still discover agent regressions in production, on customers. And prompt injection through tool results remains an open attack class: a protocol standardizes the pipe, and in doing so standardizes the attack surface. None of 2025's specifications close these gaps. They were not designed to.
What 2026 Must Deliver
Three expectations, written on 19 October 2025. First, agent identity becomes a standards problem. Expect delegation-chain work in the OAuth and IETF communities, and workload identity systems extended to cover agents. Whoever ships scoped, auditable, revocable agent credentials unlocks the enterprise deployments that this year's protocols made possible only on paper.
Second, evals become CI. Agent changes will be gated by trace-based regression suites the way code changes are gated by tests today; teams without this will not be able to ship agent updates responsibly. Third, simulation. Before an agent touches a production system, it will have run thousands of episodes against a sandboxed replica of that system. At Blue IT Systems, we treat all three as engineering disciplines, not research questions. 2025 standardized how agents speak. 2026 must standardize how we test them and why we trust them.
Sources
- Anthropic: Introducing the Model Context Protocol (25 Nov 2024)
- DeepSeek: DeepSeek-R1 Release (20 Jan 2025)
- TechCrunch: OpenAI adopts rival Anthropic's standard for connecting AI models to data (26 Mar 2025)
- Linux Foundation: Launch of the Agent2Agent Protocol Project (23 Jun 2025)
- METR: Measuring the Impact of Early-2025 AI on Experienced Open-Source Developer Productivity (10 Jul 2025)
- MCP Blog: Introducing the MCP Registry (8 Sep 2025)
