ChangeGamer

← All resources

MCP vs A2A: Two Protocols, Two Roles

Guide · updated 2026-06-12 · Markdown variant

Compact comparison of the Model Context Protocol (agent↔tool) and the Agent2Agent Protocol (agent↔agent): purpose, topology, transport, discovery, auth, governance, and when to use each.


MCP and A2A are complementary open protocols that solve different problems in agentic systems. MCP connects an agent to tools and data. A2A connects agents to other agents. Confusing them is the most common protocol mistake in multi-agent architecture.

What each protocol is for

MCP (Model Context Protocol) is a client/server protocol for connecting an AI model to external capabilities: tools (functions the model can call), resources (files, database rows, URLs it can read), and prompts (reusable instruction templates). The model is the client; the capability provider is the server. MCP standardises the wire format so a single agent can talk to any MCP-compliant tool without custom glue code.

A2A (Agent2Agent Protocol) is a peer protocol for one agent to delegate tasks to another agent. The delegating agent (client) does not know or care how the remote agent is built — it sends a task, receives streamed status updates, and gets a result. A2A standardises discovery (Agent Card), task lifecycle, and wire format so agents from different vendors interoperate without shared code.

Comparison table

Dimension MCP A2A
Purpose Agent ↔ tool / data / context Agent ↔ agent task delegation
Topology Client (host/agent) → server (tool) Peer: client agent → server agent
Transport stdio (local); Streamable HTTP (remote); HTTP+SSE (deprecated) HTTPS + Server-Sent Events; gRPC (v1.0 addition)
Message format JSON-RPC 2.0 JSON-RPC 2.0
Discovery Registry at registry.modelcontextprotocol.io; client-vendor marketplaces Agent Card at /.well-known/agent-card.json (self-hosted)
Auth OAuth 2.1 + PKCE (mandatory for HTTP); stdio uses env credentials OpenAPI 3.x Security Schemes declared in Agent Card
Governance AAIF (Linux Foundation directed fund) — donated Dec 2025; co-founded by Anthropic, Block, OpenAI Linux Foundation — donated Jun 2025; originated by Google
Stable version / date 2025-11-25 (RC: 2026-07-28, stateless architecture) v1.0 — April 2026 (prior: v0.3)
License MIT (spec + SDK) Apache 2.0
Adoption Thousands of servers in the official registry; backed by AAIF members 150+ organizations; adopters include AWS, Azure, Salesforce, SAP, ServiceNow

Capabilities inside MCP

A2A core objects

How they compose in one stack

The standard pattern: agents talk to each other via A2A; each agent reaches its tools via MCP. This is not a convention — Microsoft Azure AI Foundry and Copilot Studio explicitly support both simultaneously (confirmed at Microsoft Build 2025).

Example flow:

  1. Orchestrator agent receives a task from a user.
  2. Orchestrator delegates a sub-task to a specialist agent via A2A (message/send).
  3. Specialist agent fetches context (CRM records, docs) via MCP tool calls.
  4. Specialist returns result to orchestrator via A2A streaming.
  5. Orchestrator synthesises and responds.

Each layer stays within its protocol: A2A for the inter-agent envelope, MCP for the tool/data layer inside each agent.

Common confusions

"MCP already does multi-agent — why A2A?" MCP's sampling capability lets a server request an LLM inference, but it does not define task lifecycle, agent discovery, or cross-organisational delegation. A2A fills that gap.

"A2A replaces MCP." No. They operate at different layers. A2A does not define how an agent accesses a database or calls a REST API; MCP does.

"They are competing standards." Neither spec mandates exclusivity. The reference implementations for Google ADK, AWS Strands, and Microsoft Agent Framework all use both.

"MCP is still just Anthropic's." No. MCP governance moved to the Agentic AI Foundation (AAIF) under the Linux Foundation on 2025-12-09. Anthropic remains a co-founder and active contributor but no longer controls the spec unilaterally.

What is emerging vs stable

Getting started — verified free resources

#mcp #a2a #protocols #agents #interoperability

Category: Guide