{
  "name": "Garden Flowers MCP Server",
  "version": "1.0.0",
  "capabilities": {
    "tools": [
      {
        "name": "search_bouquets",
        "description": "Search flower catalog by category, occasion, or budget in Dubai.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "category": {
              "type": "string",
              "description": "Category slug e.g. bouquets, mono-bouquets, baskets"
            },
            "query": {
              "type": "string",
              "description": "Search term e.g. roses, peonies, white"
            },
            "maxPrice": {
              "type": "number",
              "description": "Maximum price in AED"
            }
          }
        }
      },
      {
        "name": "get_delivery_slots",
        "description": "Check available flower delivery time slots and policies in Dubai.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "area": {
              "type": "string",
              "description": "Delivery area in Dubai e.g. Downtown, Marina, Palm Jumeirah"
            }
          }
        }
      },
      {
        "name": "create_flower_order",
        "description": "Initialize order checkout session for selected bouquet.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "productId": {
              "type": "string",
              "description": "Product ID or slug"
            },
            "recipientName": {
              "type": "string",
              "description": "Recipient name"
            },
            "deliveryAddress": {
              "type": "string",
              "description": "Address in Dubai"
            }
          }
        }
      }
    ]
  },
  "endpoint": "https://gardenflowers.ae/api/mcp"
}