惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fox-IT International blog
Recent Announcements
Recent Announcements
D
Docker
IT之家
IT之家
B
Blog
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
量子位
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
博客园 - 司徒正美
李成银的技术随笔
美团技术团队
Blog — PlanetScale
Blog — PlanetScale
雷峰网
雷峰网
The GitHub Blog
The GitHub Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
T
Tailwind CSS Blog
H
Help Net Security
Engineering at Meta
Engineering at Meta
小众软件
小众软件
B
Blog RSS Feed
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
M
Microsoft Research Blog - Microsoft Research
宝玉的分享
宝玉的分享
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
Martin Fowler
Martin Fowler
Stack Overflow Blog
Stack Overflow Blog

The Register - Special Features: Agentic AI

Deciphering the alphabet soup of agentic AI protocols Agents gone wild! Companies give untrustworthy bots keys to the kingdom Google to foist Gemini pane on Chrome users ServiceNow boasts about years of sweat equity that went into making its AI agents smarter Yes, you can build an AI agent – here's how, using LangFlow Enterprise AI agent rollouts slow outside the lab How agentic AI can strain modern memory hierarchies Clawdbot becomes Moltbot, but can’t shed security concerns Salesforce to build US Army's agentic AI foundation 'Ralph Wiggum' loop prompts Claude to vibe-clone software Gartner questions whether Salesforce AI buffet will stay all-you-can-eat forever Claude can now disgorge interface elements from other apps Keep it simple, stupid: Agentic AI tools choke on complexity Sandia boffins let three AI agents loose in the lab. Science, not chaos, ensued When AI 'builds a browser,' check the repo before believing the hype Palo Alto Networks security-intel boss calls AI agents 2026's biggest insider threat Workers should control the means of agentic production, suggests WorkBeaver boss Salesforce willing to lose money on AI agent licenses when customers are locked in BA boss fears AI agents could make brands invisible Agents of misfortune: The world isn't ready for AI agents
MCP vs A2A: Agentic AI protocols take shape
2025-07-12 · via The Register - Special Features: Agentic AI

We have protocols and standards for just about everything. It's generally helpful when we can all agree on how technologies should talk to one another. So, it was only a matter of time before the first protocols governing agentic AI started cropping up.

Anthropic's Model Context Protocol (MCP), for better or worse, is among the more recognizable of these protocols. Introduced last year, MCP makes it easier to connect models to external data stores, APIs, and other functions and tools; it also opened the door to another wave of security threats.

However, MCP isn't the only AI-centric protocol gaining momentum. At Google I/O in April, the Chocolate Factory revealed its Agent-to-Agent (A2A) protocol. On the surface, MCP and A2A certainly sound a lot alike. They share a similar client-server architecture, use many of the same underlying messaging and transport protocols, and, despite their relative immaturity, have enjoyed significant industry backing.

REG AD

You'd be forgiven for thinking this was the VHS and Betamax standards wars all over again, with two AI giants slugging it out over whose protocol will reign supreme. In reality, MCP and A2A address very different problems, with much of the confusion surrounding them rooted in the often vague definition of what the heck actually constitutes an AI agent. So, let's clear that up.

REG AD

At a high level, agents are generally pretty simple: They usually feature some kind of model that is responsible for interpreting information and making decisions as to what to do with it. That model may have access to various functions or tools for retrieving or executing those tasks. 

For example, a logging agent might use a tool to poll an API endpoint periodically for logs. If an anomaly is detected, it might use another tool to generate a support ticket for review by a human operator. If they can be made reliable enough, these agents might just be able to eliminate a number of pesky employees with their salaries, health care, and sick leave. And while early trials show agents have a long way to go, major tech companies are already drawing up plans for who they'll lay off first.

Better protocols for how these agents should talk to one another may help them to get there. And this is where MCP and A2A come into play. We explored MCP in depth back in April, but, in a nutshell, the protocol is "a universal, open standard for connecting AI systems with data sources."

In other words, MCP provides a standardized way for models to interact with existing resources, like a SQL database, Kubernetes cluster, or existing APIs. The protocol follows a standard client-server architecture with information exchanged using JSON-RPC, carried over Stdio, HTTP, or SSE depending on the specific use case.

Here's a high-level look at MCP's architecture. Credit: modelcontextprotocol.io

Here's a high-level look at MCP's architecture. Credit: modelcontextprotocol.io

The important bit here is that MCP is designed to facilitate communication between models and tools by exposing their capabilities in a standardized manner. This is why MCP is described by Anthropic as being like USB-C for AI. But, as we've previously explored, it's just one of many ways of doing so. For example, similar functionality can be achieved in LangChain.

If MCP is like USB, then you can think of A2A a bit like Ethernet. A2A also uses JSON-RPC, HTTP, and SSE, but it's instead intended to facilitate communications between agents.

These communications follow a fairly predictable path, which begins with a discovery phase where agents in a system essentially exchange business cards containing their name, what they can do, where to reach them, and how to authenticate. These agent cards also contain details on optional functionality, like streaming data over SSE, as well as the kinds of formats (i.e., text, images, audio, or video) that they can ingest or return.

Here's a breakdown of how Google's A2A Protocol works.

Here's a breakdown of how Google's A2A Protocol works.

Now that the agents are aware of one another, they can send each other tasks where one agent is acting as a client and the other as a server. However, it should be noted that these roles aren't necessarily fixed, and agents can act as the client or server depending on the context.

REG AD

Once the task is created, the agent server sends back a message along with a task ID, which is used to track its progress, which is kind of important for longer running jobs. The client can either poll the server periodically, or, if both support SSE, the server can automatically provide updates on its progress.

This allows the task to flag missing information, like a user's email address or a support ticket's severity, which may be required to proceed. Once the task is completed, the result is sent from the server to the client in the form of an artifact, which might contain various parts including text, images, and structured JSON, among others.

Going back to our earlier example, the logging agent might send a support ticket via A2A to another agent that can perform diagnostics and assess whether it can be resolved automatically or needs human input.

A key impetus behind A2A is the idea that truly useful agentic systems will be assembled from multiple more specialized agents, some of which may have been developed internally, and others that are supplied by the software vendor. 

As far as the protocol is concerned, A2A doesn't care whether an agent is using MCP to accomplish its goal; only that the agents all speak the same language and are clearly communicating their capabilities, limitations, and progress since, again, some tasks may not be completed in real time.

Since Google took the wraps off A2A at I/O this spring, the protocol has enjoyed broad support from model builders, cloud providers, and software vendors including Accenture, Arize, Atlassian, Workday, and Intuit, to name just a handful. 

And with the backing of Amazon, Microsoft, Cisco, Salesforce, SAP, and ServiceNow, Google announced in June its intention to donate the A2A protocol to the Linux Foundation.

While both MCP and A2A have received strong support so far from tech giants, the AI ecosystem is still in its infancy, and the technology shows no signs of slowing down. Standards bodies, meanwhile, don't have a great track record for moving quickly, especially if there's a disagreement as to how something should be done or which features it should and shouldn't define. As such, it's entirely possible that new standards and protocols may emerge as the agentic systems are better understood. ®