{
  "schemaVersion": "2025-01",
  "name": "sinder-webmcp",
  "description": "WebMCP manifest for Sinder. Declares browser-discoverable tools annotated on the live site (forms with `tool-name` attributes) plus the JSON tool registry.",
  "publisher": {
    "name": "Sinder",
    "url": "https://sinder.ae"
  },
  "version": "1.0.0",
  "tools": [
    {
      "name": "join_waitlist",
      "description": "Submit a UAE-resident's name and email to reserve a Sinder Founder Card spot on the waitlist.",
      "page": "https://sinder.ae/join",
      "selector": "form[tool-name='join_waitlist']",
      "input": {
        "type": "object",
        "required": [
          "fullName",
          "email"
        ],
        "properties": {
          "fullName": {
            "type": "string",
            "minLength": 2
          },
          "email": {
            "type": "string",
            "format": "email"
          },
          "phone": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "calculate_savings",
      "description": "Estimate FX savings vs the cardholder's UAE bank card for a given trip / spend amount.",
      "page": "https://sinder.ae/pricing",
      "selector": "[tool-name='calculate_savings']",
      "input": {
        "type": "object",
        "required": [
          "amount",
          "currency"
        ],
        "properties": {
          "amount": {
            "type": "number",
            "minimum": 0
          },
          "currency": {
            "type": "string",
            "minLength": 3,
            "maxLength": 3
          },
          "cardType": {
            "type": "string"
          }
        }
      }
    },
    {
      "name": "place_merch_order",
      "description": "Submit the current Sinder merch cart as an order with shipping details.",
      "page": "https://sinder.ae/cart",
      "selector": "[tool-name='place_merch_order']",
      "input": {
        "type": "object",
        "required": [
          "items",
          "shipping"
        ],
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "shipping": {
            "type": "object"
          }
        }
      }
    },
    {
      "name": "activate_card_consent",
      "description": "Accept the Sinder cardholder TNCs and consent documents to activate a physical Founder Card.",
      "page": "https://sinder.ae/activate",
      "selector": "[tool-name='activate_card_consent']"
    },
    {
      "name": "lookup_faq",
      "description": "Read Sinder FAQ entries (FX, pricing, security, availability).",
      "endpoint": "https://sinder.ae/llms-full.txt"
    }
  ],
  "discovery": {
    "openapi": "https://sinder.ae/openapi.json",
    "agentCard": "https://sinder.ae/.well-known/agent.json",
    "mcp": "https://sinder.ae/.well-known/mcp.json",
    "llmsTxt": "https://sinder.ae/llms.txt"
  }
}