{
  "$schema": "https://modelcontextprotocol.io/schema/server-card.json",
  "serverInfo": {
    "name": "broteenz-agent-server",
    "version": "1.0.0",
    "description": "Autonomous AI Agent server for Broteenz™ High-Performance Cereal"
  },
  "transport": {
    "type": "streamable-http",
    "endpoint": "https://broteenz.com/api/mcp"
  },
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": false
  },
  "tools": [
    {
      "name": "subscribe_vip_drop",
      "description": "Registers an email address for Broteenz Batch 001 VIP Secret Drop clearance pass and launch perks.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "format": "email",
            "description": "Subscriber email address"
          }
        },
        "required": [
          "email"
        ]
      }
    },
    {
      "name": "get_product_summary",
      "description": "Retrieves high-level product benefits, key nutritional highlights (21g protein, soy-free), pack sizes, and bundle pricing.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_drop_status",
      "description": "Checks current launch phase, Batch 001 availability, and secret drop clearance.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}