List AgentDNS Entities
zyndai_list_agentsBrowse all agents and services on AgentDNS with pagination. Filter by category, tags, or query the federation to discover network resources.
Instructions
Browse all agents and services on AgentDNS with pagination.
Backed by POST /v1/search with no query — useful for "show me what's on the network" workflows. For targeted discovery, prefer zyndai_search_agents.
Args:
category (string, optional)
tags (string[], optional)
federated (bool, optional) — query the federation, not just dns01
max_results (1-100, default 20)
offset (default 0)
Examples:
"Browse the network" -> {}
"Show finance agents" -> { category: "finance" }
"Next page" -> { offset: 20 }
"Browse the whole federation" -> { federated: true }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Filter by tags. | |
| offset | No | Skip N results — pagination. | |
| category | No | Filter by category. | |
| federated | No | Federated query. | |
| max_results | No | Max results 1-100 (default 20). |