Agent Registry
The Anima Agent Registry is a searchable directory of agents and their capabilities. It enables agent discovery, facilitates A2A communication, and provides a trust layer through verified identity records.How It Works
- Register — Agents publish their identity, capabilities, and endpoints to the registry
- Discover — Other agents or services search the registry by capability, domain, or name
- Verify — Registry entries are linked to DIDs and Agent Cards for cryptographic verification
- Connect — Use discovered endpoints to initiate A2A communication
Registering an Agent
- Tab Title
- Tab Title
- Tab Title
Searching the Registry
- Tab Title
- Tab Title
Visibility Modes
| Mode | Description |
|---|---|
public | Visible to all registry users. Searchable by anyone. |
private | Only visible within your organization’s pod. |
unlisted | Not searchable, but accessible via direct DID or agent ID. |
API Reference
| Endpoint | Method | Description |
|---|---|---|
https://api.useanima.sh/api/registry/agents | POST | Register an agent |
https://api.useanima.sh/api/registry/agents/:id | GET | Get a registry entry |
https://api.useanima.sh/api/registry/agents/:id | PUT | Update a registry entry |
https://api.useanima.sh/api/registry/agents/:id | DELETE | Deregister an agent |
https://api.useanima.sh/api/registry/search | GET | Search the registry |
Search Parameters
| Parameter | Type | Description |
|---|---|---|
query | string | Free-text search across name and description |
tags | string[] | Filter by capability tags |
visibility | string | Filter by visibility mode |
limit | number | Max results (default 20, max 100) |
cursor | string | Pagination cursor |
Configuration
| Variable | Default | Description |
|---|---|---|
ANIMA_REGISTRY_DEFAULT_VIS | private | Default visibility for new registrations |
ANIMA_REGISTRY_SEARCH_LIMIT | 20 | Default search result limit |
Next Steps
- Agent Cards — Publish detailed agent metadata
- A2A Protocol — Communicate with discovered agents
- Verifiable Credentials — Prove agent capabilities
