{
  "name": "MOH London",
  "description": "Luxury jewellery from Hatton Garden, London. Search engagement rings, wedding bands, eternity rings, earrings, necklaces, bracelets, loose diamonds, and fine fragrances.",
  "url": "https://www.mohlondon.com",
  "provider": {
    "name": "MOH London Ltd",
    "url": "https://www.mohlondon.com"
  },
  "tools": [
    {
      "name": "search_products",
      "description": "Search MOH London luxury jewellery catalogue — engagement rings, wedding bands, eternity rings, earrings, necklaces, pendants, bracelets, and fragrances. Returns matching products with names, prices, and links.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search query, e.g. \"platinum eternity ring\", \"oval diamond earrings\", \"rose gold bracelet\""
          }
        },
        "required": ["query"]
      },
      "endpoint": "https://www.mohlondon.com/api/search"
    },
    {
      "name": "filter_diamonds",
      "description": "Search and filter loose diamonds from MOH London inventory by shape, type (natural or lab-grown), carat weight, colour, clarity, cut grade, and price range.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "enum": ["natural", "lab"],
            "description": "Diamond type — \"natural\" or \"lab\" (lab-grown)"
          },
          "shapes": {
            "type": "string",
            "description": "Comma-separated shapes: Round, Oval, Princess, Emerald, Cushion, Pear, Marquise, Asscher, Radiant, Heart"
          },
          "caratMin": { "type": "number", "description": "Minimum carat weight (e.g. 0.5)" },
          "caratMax": { "type": "number", "description": "Maximum carat weight (e.g. 3.0)" },
          "colors": {
            "type": "string",
            "description": "Comma-separated colour grades: D, E, F, G, H, I, J, K"
          },
          "clarities": {
            "type": "string",
            "description": "Comma-separated clarity grades: FL, IF, VVS1, VVS2, VS1, VS2, SI1, SI2"
          },
          "cuts": {
            "type": "string",
            "description": "Comma-separated cut grades: Fair, Good, Very Good, Excellent"
          },
          "priceMin": { "type": "number", "description": "Minimum price in GBP" },
          "priceMax": { "type": "number", "description": "Maximum price in GBP" }
        },
        "required": ["type"]
      },
      "endpoint": "https://www.mohlondon.com/api/diamonds"
    },
    {
      "name": "check_product_availability",
      "description": "Check if a MOH London jewellery product is available and get its current price. All products are handcrafted to order in Hatton Garden with a typical lead time of 2-4 weeks.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Product name or description to search for, e.g. \"Maddie eternity ring\""
          }
        },
        "required": ["query"]
      },
      "endpoint": "https://www.mohlondon.com/api/search"
    }
  ]
}
