Skip to main content

A2A Protocol

Agentium provides full support for the Agent-to-Agent (A2A) protocol, enabling interoperability between AI agents built on different frameworks.
A2A is an open standard by Google that defines how AI agents communicate with each other via JSON-RPC 2.0 over HTTP. It includes agent discovery, task management, and streaming.

Capabilities

Agentium supports both sides of A2A:

A2A Server

Expose your Agentium agents as A2A-compliant endpoints. Other frameworks (LangGraph, CrewAI, etc.) can discover and call your agents.

A2A Client

Connect to remote A2A agents. Use them as tools, team members, or call them directly.

How It Works

  1. Discovery — Agents publish an Agent Card at /.well-known/agent.json describing their capabilities
  2. Communication — JSON-RPC 2.0 messages over HTTP (message/send) or SSE (message/stream)
  3. Task Management — Each interaction creates a task with lifecycle states (submitted → working → completed)

Quick Example

Expose an agent as A2A server

Call a remote A2A agent