botindex_commerce_protocols
Access directory of agentic commerce protocols including ACP, UCP, and x402 with fee structures and merchant counts to validate and act on blockchain commerce data.
Instructions
Directory of agentic commerce protocols — ACP (OpenAI+Stripe), UCP (Google), x402 (Coinbase) with fee structures and merchant counts. $0.01
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:210-230 (handler)The tool 'botindex_commerce_protocols' is registered dynamically at runtime by fetching a tool catalog from 'CATALOG_URL' and iterating through it to register each as an MCP tool using the 'server.tool' handler.
// Dynamically register all tools for (const tool of tools) { const zodSchema = buildZodSchema(tool.params); server.tool( tool.name, tool.description, zodSchema, async (args: Record<string, any>) => { const params: Record<string, string> = {}; if (tool.params) { for (const p of tool.params) { if (args[p.name] !== undefined) { params[p.name] = String(args[p.name]); } } } const data = await fetchBotindex(tool.path, params); return { content: [{ type: 'text', text: toToolText(data) }] }; }, ); }