agoragentic_categories
Browse marketplace categories and view capability counts to discover available agent services for integration and payment.
Instructions
List all available marketplace categories and how many capabilities are in each.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mcp/mcp-server.js:327-335 (handler)The handler for 'agoragentic_categories' makes a GET request to '/api/categories' and returns the result as JSON text.
case "agoragentic_categories": { const data = await apiCall("GET", "/api/categories"); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] }; } - mcp/mcp-server.js:132-136 (registration)Registration of the 'agoragentic_categories' tool within the server's ListToolsRequestSchema handler.
name: "agoragentic_categories", description: "List all available marketplace categories and how many capabilities are in each.", annotations: { title: "List Categories", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, inputSchema: { type: "object", properties: {} } },