A2A Protocol
RadarOS 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
RadarOS supports both sides of A2A:A2A Server
Expose your RadarOS 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
- Discovery — Agents publish an Agent Card at
/.well-known/agent.jsondescribing their capabilities - Communication — JSON-RPC 2.0 messages over HTTP (
message/send) or SSE (message/stream) - Task Management — Each interaction creates a task with lifecycle states (submitted → working → completed)