By Sagar Shankaran, Founder of CallSphere
Google's Agent2Agent protocol — now Linux Foundation governed with 150+ orgs supporting — is the missing primitive for cross-vendor agent collaboration. We cover the JSON-RPC mechanics, MCP overlap, and real interop scenarios.
Key takeaways
TL;DR — A2A is the cross-org "agents talking to agents" protocol. Originally Google, donated to Linux Foundation, 150+ orgs in production by April 2026. JSON-RPC over HTTP, capability manifests, complementary to MCP. If you ship agent-facing APIs in 2026, you publish an A2A manifest.
Each agent publishes a manifest describing the tasks it can handle (input schema, output schema, auth, SLA). A client agent fetches the manifest, sends a JSON-RPC 2.0 task request, receives a result or a stream of progress events.
A2A is the agent-to-agent layer. MCP is the agent-to-tool layer. They compose: an A2A request can trigger MCP tool calls inside the receiving agent.
flowchart LR
ORG1[Org A's agent] -->|fetch manifest| MAN[Manifest URL]
MAN --> ORG1
ORG1 -->|JSON-RPC task| ORG2[Org B's agent]
ORG2 -->|stream progress| ORG1
ORG2 -->|MCP call| TOOL[(Org B's internal tool)]
ORG2 --> ORG1
ORG1 --> USER[End user]
Skip when: it's all your own agents under one roof — internal RPC is simpler.
CallSphere publishes an A2A manifest at /.well-known/agent.json. Three tasks exposed:
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
schedule_callback(phone, time_window) — invoked by partner CRM agents to schedule a CallSphere AI callback.fetch_call_summary(call_id) — invoked by partner BI agents to pull summaries.escalate_to_human(call_id, reason) — invoked by partner triage agents to escalate.Internally those tasks route through CallSphere's regular agents — a partner's A2A request becomes an internal supervisor delegation in seconds. Across 37 agents · 90+ tools · 115+ DB tables · 6 verticals, A2A is the front door for partner integrations. Pricing: Starter $149 · Growth $499 · Scale $1,499, 14-day trial, 22% affiliate.
# Server side — publish manifest
@app.get("/.well-known/agent.json")
def manifest():
return {
"name": "CallSphere Voice Agent",
"tasks": [
{"name": "schedule_callback", "input_schema": {...}, "output_schema": {...}},
{"name": "fetch_call_summary", "input_schema": {...}, "output_schema": {...}},
],
"auth": {"type": "bearer"},
"endpoint": "https://callsphere.ai/a2a"
}
# Client side — call a partner agent
import httpx
res = httpx.post(partner_endpoint, json={
"jsonrpc": "2.0", "id": 1, "method": "schedule_callback",
"params": {"phone": "+1...", "time_window": "tomorrow 9-12"}
}, headers={"Authorization": f"Bearer {token}"})
Q: A2A or MCP? Both. A2A is agent ↔ agent; MCP is agent ↔ tool. They compose.
Q: Which orgs support A2A? By April 2026: Google, Microsoft, AWS, Salesforce, SAP, ServiceNow, Workday, IBM, plus 150+ others.
Q: Streaming? Yes — A2A supports server-sent events for long-running tasks.
Q: Discovery? A2A registries are emerging (Linux Foundation hosts a public one). Most orgs publish manifests at well-known URLs.
Q: Identity / agent attestation? Spec includes Verifiable Credentials slots; production usage still maturing.
A2A Protocol: Cross-Organization Agent Collaboration in 2026 forces a tension most teams underestimate: agent handoff state. A single LLM call is easy. A booking agent that hands a confirmed slot to a billing agent that hands a follow-up to an escalation agent — that's where context loss, hallucinated IDs, and double-bookings live. Solving it well means treating the conversation as a stateful workflow, not a chat.
Still reading? Stop comparing — try CallSphere live.
CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.
Production AI agents live or die on three loops: evals, retries, and handoff state. CallSphere runs 37 agents across 6 verticals, each with its own eval suite — synthetic call transcripts replayed nightly with assertion checks on extracted entities (date, time, party size, insurance, address). Without that loop, prompt regressions ship silently and you only find out when bookings drop.
Structured tools beat free-form text every time. Our 90+ function tools all enforce JSON schemas validated server-side; if the model hallucinates an integer where a string is required, we retry with a corrective system message before falling back to a deterministic path. For long-running flows, we treat agent handoffs as a state machine — booking → confirmation → SMS — so context survives turn boundaries.
The Realtime API vs. async decision usually comes down to "is the user holding the phone right now?" If yes, Realtime; if no (callback queue, after-hours voicemail), async wins on cost-per-conversation, which we track per agent in 115+ database tables spanning all 6 verticals.
What's the right way to scope the proof-of-concept?
Real Estate runs as a 6-container pod (frontend, gateway, ai-worker, voice-server, NATS event bus, Redis) backed by Postgres realestate_voice with row-level security so multi-tenant data never crosses tenants. For a topic like "A2A Protocol: Cross-Organization Agent Collaboration in 2026", that means you're not starting from scratch — you're configuring an agent template that's already been hardened across thousands of conversations.
How do you handle compliance and data isolation? Day one is integration mapping (scheduler, CRM, messaging) and prompt tuning against your top 20 real call transcripts. Day two through five is shadow-mode running, where the agent transcribes and recommends but a human still answers, so you can compare side-by-side. Go-live is the moment your eval pass-rate clears your internal bar.
When does it make sense to switch from a managed model to a self-hosted one? The honest answer: it scales until your tool catalog gets stale. The agent is only as good as the integrations it can actually call, so the operational discipline is keeping schemas, webhooks, and fallback paths green. The platform handles the rest — observability, retries, multi-region routing — without your team owning the GPU layer.
Want to see how this maps to your stack? Book a live walkthrough at calendly.com/sagar-callsphere/new-meeting, or try the vertical-specific demo at salon.callsphere.tech. 14-day trial, no credit card, pilot live in 3–5 business days.
Written by
Sagar Shankaran· Founder, CallSphere
Sagar Shankaran is the founder of CallSphere, where he builds production AI voice and chat agents deployed across healthcare, hospitality, real estate, and home services. He writes about agentic AI, LLM engineering, and shipping voice agents that handle real calls in production.
See how AI voice agents work for your industry. Live demo available -- no signup required.
Five proven multi-agent architecture patterns built on A2A — orchestrator, peer mesh, hub-and-spoke, marketplace, and tiered specialist.
How to design a multi-agent system using MCP for tools and A2A for cross-vendor coordination, with a CallSphere voice agent as a participating node.
A2A is the open standard for agent-to-agent coordination. Here is how the Agent Card JSON works, how discovery happens, and what to publish.
MCP is agent-to-tool. A2A is agent-to-agent. Here is a clear 2026 decision guide for builders choosing between (and combining) the two protocols.
A no-fluff recap of the 7 biggest enterprise AI moves from Google Cloud Next 2026 — Gemini Enterprise, Agentspace, A2A, Gemini 3.1 Ultra, and more.
Google's May 2026 MCP 1.0 + A2A developers guide is the cleanest protocol picker we have seen. The takeaways, in plain English, with a CallSphere lens.
© 2026 CallSphere LLC. All rights reserved.