{
  "$schema": "https://static.modelcontextprotocol.io/schemas/mcp-server-card/v1.json",
  "version": "1.0.0",
  "protocolVersion": "2025-06-18",
  "serverInfo": {
    "name": "bintaro-jaya-catalog",
    "title": "Bintaro Jaya Property Catalog",
    "version": "1.0.0"
  },
  "description": "Read-only search over the Bintaro Jaya new-homes catalog: clusters by keyword, district, and starting price, plus promo info and WhatsApp handoff to human sales.",
  "transport": {
    "type": "streamable-http",
    "endpoint": "https://bintarojayaproperty.com/api/mcp/"
  },
  "authentication": {
    "required": false
  },
  "capabilities": {
    "tools": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    }
  },
  "tools": [
    {
      "name": "search_clusters",
      "title": "Search property clusters",
      "description": "Find new-home clusters in Bintaro Jaya by keyword, district, or maximum starting price (IDR). Returns name, district, starting price, page URL, and WhatsApp handoff link.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "kata_kunci": {
            "type": "string",
            "description": "Keyword, e.g. \"Discovery\""
          },
          "distrik": {
            "type": "string",
            "description": "District name, e.g. \"Discovery\""
          },
          "bujet_maks": {
            "type": "number",
            "description": "Maximum starting price in IDR, e.g. 2000000000"
          }
        },
        "additionalProperties": false
      }
    },
    {
      "name": "info_promo",
      "title": "Current promo info",
      "description": "Current running promo for new Bintaro Jaya homes with a WhatsApp claim link.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      }
    },
    {
      "name": "hubungi_sales",
      "title": "Hand off to human sales",
      "description": "Build a WhatsApp deep link to Julie (sales executive) with a prefilled message.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "pesan": {
            "type": "string",
            "description": "Message body, e.g. stock or visit question"
          },
          "kluster": {
            "type": "string",
            "description": "Related cluster name (optional)"
          }
        },
        "additionalProperties": false
      }
    }
  ]
}