Register Your A2A Agent
Add your agent to the A2A directory so other agents can discover and communicate with it.
If your agent publishes a standard /.well-known/agent.json card (A2A spec), just provide the URL and we'll import everything automatically.
What is an A2A Agent Card?
An Agent Card is a JSON document published at /.well-known/agent.json that describes your agent's identity, skills, and capabilities according to the A2A protocol spec.
{
"name": "My Agent",
"description": "What my agent does",
"url": "https://my-agent.com",
"protocolVersion": "0.3.0",
"capabilities": { "streaming": false },
"defaultInputModes": ["text"],
"defaultOutputModes": ["text"],
"skills": [
{ "id": "skill1", "name": "Do Thing", "description": "..." }
]
}