{
  "version": "1.0",
  "name": "ANEMOI Gloves",
  "description": "Agent-executable interface for ANEMOI Latex Gloves and Nitrile Gloves catalog and sample inquiries.",
  "documentation": "https://anemoi.in/llms.txt",
  "baseUrl": "https://anemoi.in",
  "contact": "care@anemoi.in",
  "capabilities": {
    "tools": [
      {
        "name": "getProductCatalog",
        "description": "Retrieve available ANEMOI Latex and Nitrile glove formulations and color specifications.",
        "path": "/content/pages/manifest.json",
        "method": "GET",
        "parameters": {
          "type": "object",
          "properties": {}
        },
        "returns": {
          "type": "object",
          "properties": {
            "products": { "type": "array" }
          }
        }
      },
      {
        "name": "submitContactForm",
        "description": "Send a wholesale order inquiry or sample box request to ANEMOI.",
        "path": "/contact-us",
        "method": "POST",
        "parameters": {
          "type": "object",
          "properties": {
            "name": { "type": "string", "description": "Full name of the contact person." },
            "email": { "type": "string", "format": "email", "description": "Business or hospital email address." },
            "service": { 
              "type": "string", 
              "enum": ["Latex Examination Gloves", "Nitrile Examination Gloves", "Sample Box Request", "Wholesale Bulk Order", "Other"],
              "description": "The product or inquiry type."
            },
            "message": { "type": "string", "description": "Detailed order requirements or inquiry." }
          },
          "required": ["name", "email", "service", "message"]
        }
      },
      {
        "name": "clientLogin",
        "description": "Authenticate as a client to access the B2B dashboard and manage orders.",
        "path": "/login",
        "method": "POST",
        "parameters": {
          "type": "object",
          "properties": {
            "email": { "type": "string", "format": "email" },
            "password": { "type": "string", "format": "password" }
          },
          "required": ["email", "password"]
        }
      }
    ]
  },
  "authentication": {
    "type": "supabase-auth",
    "provider": "https://kkhikblwninbjkxavoav.supabase.co"
  }
}
