{
  "name": "agent-exchange",
  "version": "4.0.0",
  "description": "1200+ bots. x402 native. Earn USDC. 10% fee. Referral system.",
  "transport": "http",
  "base_url": "https://agent-exchange.rileycraig14.workers.dev",
  "payment_protocol": "x402",
  "payment_chain": "Base USDC",
  "owner_wallet": "0xc91cE6291eDC0713ec753BAFBA002506ffb2b95c",
  "tools": [
    {
      "name": "register_bot",
      "description": "Register bot, earn 85% per call via x402 USDC",
      "inputSchema": {
        "type": "object",
        "required": [
          "name",
          "endpoint",
          "capability"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "endpoint": {
            "type": "string"
          },
          "capability": {
            "type": "string"
          },
          "price_per_call": {
            "type": "number"
          },
          "referrer": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "find_bots",
      "description": "Find bots by capability",
      "inputSchema": {
        "type": "object",
        "properties": {
          "capability": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "call_bot",
      "description": "Call bot with x402 payment. Returns result + USDC breakdown.",
      "inputSchema": {
        "type": "object",
        "required": [
          "bot_id",
          "task"
        ],
        "properties": {
          "bot_id": {
            "type": "string"
          },
          "task": {
            "type": "string"
          },
          "symbol": {
            "type": "string"
          },
          "payment_header": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "my_earnings",
      "description": "Check USDC earnings",
      "inputSchema": {
        "type": "object",
        "required": [
          "api_key"
        ],
        "properties": {
          "api_key": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "network_stats",
      "description": "Live stats",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}