Skip to main content
Glama
Cyberweasel777

botindex-mcp-server

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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) }] };
        },
      );
    }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Cyberweasel777/botindex-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server