{
  "$schema": "https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/server-card.json",
  "serverInfo": {
    "name": "castellano-inc-mcp",
    "title": "Castellano Distributor & Logistics MCP Server",
    "version": "1.0.0",
    "description": "MCP Server providing AI agents access to wholesale flower inventory, pastry fillings catalog, hispanic groceries, and 26ft OTR freight rate calculations."
  },
  "transport": {
    "type": "sse",
    "endpoint": "https://castellano-inc.com/api/mcp/sse"
  },
  "capabilities": {
    "tools": [
      {
        "name": "get_otr_freight_quote",
        "description": "Calculates freight estimates and logistics capacity for 26ft dry box trucks nationwide in the US.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "origin_zip": { "type": "string", "description": "5-digit US pickup zip code" },
            "destination_zip": { "type": "string", "description": "5-digit US delivery zip code" },
            "pallets": { "type": "integer", "description": "Number of pallets (max 12)" },
            "weight_lbs": { "type": "number", "description": "Total weight in lbs" }
          },
          "required": ["origin_zip", "destination_zip"]
        }
      },
      {
        "name": "search_wholesale_catalog",
        "description": "Searches wholesale products across fresh flowers, Kreche pastry fillings, and hispanic food items.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "category": { "type": "string", "enum": ["flowers", "fillings", "hispanic", "all"] },
            "query": { "type": "string", "description": "Search term e.g. roses, arequipe, olives" }
          },
          "required": ["query"]
        }
      }
    ],
    "resources": [
      {
        "uri": "castellano://catalog/overview",
        "name": "Castellano Full Product Catalog",
        "mimeType": "text/markdown"
      },
      {
        "uri": "castellano://company/info",
        "name": "Castellano Distributor Logistics & Headquarters Info",
        "mimeType": "application/json"
      }
    ]
  }
}
