agorion_providers
Lists all providers in the Agorion discovery network along with their service counts, enabling discovery and validation of blockchain ecosystem data.
Instructions
List all providers registered in the Agorion discovery network with their service counts.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:184-193 (handler)Implementation and registration of the 'agorion_providers' tool.
server.tool( 'agorion_providers', 'List all providers registered in the Agorion discovery network with their service counts.', {}, async () => { const res = await fetch(`${AGORION_URL}/providers`); const data = await res.json(); return { content: [{ type: 'text', text: JSON.stringify(data, null, 2) }] }; }, );