{
  "$schema": "https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/server-card.json",
  "serverInfo": {
    "name": "lh-freight-mcp",
    "title": "LH Freight MCP Server",
    "version": "1.0.0",
    "description": "MCP Server providing AI agents access to freight rate estimation, cold chain logistics capabilities, and service inquiries for LH Freight."
  },
  "transport": {
    "type": "sse",
    "endpoint": "https://lhfreightus.com/api/mcp/sse"
  },
  "capabilities": {
    "tools": [
      {
        "name": "calculate_freight_quote",
        "description": "Calculates freight quote estimates for temperature-controlled LTL, FTL reefer, or dry cargo shipping.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "origin_zip": { "type": "string", "description": "5-digit US origin postal code" },
            "destination_zip": { "type": "string", "description": "5-digit US destination postal code" },
            "service_type": { "type": "string", "enum": ["ltl_refrigerated", "ftl_reefer", "ftl_dry", "cross_docking"] },
            "pallet_count": { "type": "number", "description": "Number of pallets" },
            "temperature_requirement": { "type": "string", "description": "Target temperature (e.g., 34F, frozen, ambient)" }
          },
          "required": ["origin_zip", "destination_zip", "service_type"]
        }
      },
      {
        "name": "get_service_coverage",
        "description": "Checks freight shipping routes and weekly departure frequencies from the Miami Logistics Hub.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "state_code": { "type": "string", "description": "2-letter US state code" }
          },
          "required": ["state_code"]
        }
      }
    ]
  }
}
