{
  "name": "Saekue",
  "description": "Property marketplace for discovering, comparing, buying, selling, and renting real estate across Saekue’s global markets.",
  "url": "https://www.saekue.com/",
  "version": "1.1.0",
  "discovery": {
    "llms_txt": "https://www.saekue.com/llms.txt",
    "agent_instructions": "https://www.saekue.com/agent-instructions.md",
    "sitemap_index": "https://www.saekue.com/sitemap_index.xml"
  },
  "actions": [
    {
      "name": "search_properties",
      "description": "Search live property listings on Saekue by keywords, location, price, beds, and property type.",
      "url": "https://www.saekue.com/marketplace",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "search": {
            "type": "string",
            "description": "Free-text search query (city, suburb, keyword)"
          },
          "location": {
            "type": "string",
            "description": "Location filter (e.g. Harare, Bulawayo, Borrowdale)"
          },
          "property_type": {
            "type": "string",
            "description": "Property type filter (e.g. house, apartment, land, commercial)"
          },
          "min_price": {
            "type": "number",
            "description": "Minimum listing price in USD"
          },
          "max_price": {
            "type": "number",
            "description": "Maximum listing price in USD"
          },
          "bedrooms": {
            "type": "number",
            "description": "Minimum number of bedrooms"
          }
        },
        "required": []
      }
    },
    {
      "name": "view_property",
      "description": "Open a property listing using its canonical SEO path. Prefer URLs from sitemap.xml or listing pages.",
      "url": "https://www.saekue.com/{country}/{province}/{city}/{suburb}/{property_slug}",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "country": {
            "type": "string",
            "description": "Country slug (e.g. zimbabwe, south-africa)"
          },
          "province": {
            "type": "string",
            "description": "Province or state slug (e.g. mashonaland-east, gauteng)"
          },
          "city": {
            "type": "string",
            "description": "City slug (e.g. harare, johannesburg)"
          },
          "suburb": {
            "type": "string",
            "description": "Suburb or area slug (e.g. borrowdale, sandton)"
          },
          "property_slug": {
            "type": "string",
            "description": "Property name slug (e.g. grand-excellence, layan-verde)"
          }
        },
        "required": ["country", "province", "city", "suburb", "property_slug"]
      }
    },
    {
      "name": "view_property_legacy",
      "description": "Legacy property URL by numeric ID. Redirects to the canonical SEO path when available.",
      "url": "https://www.saekue.com/marketplace/property/{property_id}",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "property_id": {
            "type": "string",
            "description": "Saekue property listing ID (legacy — prefer view_property SEO path)"
          }
        },
        "required": ["property_id"]
      }
    },
    {
      "name": "browse_blog",
      "description": "Browse Saekue property guides and Zimbabwe real estate articles.",
      "url": "https://www.saekue.com/blog",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "search": {
            "type": "string",
            "description": "Optional keyword to filter blog articles"
          },
          "category": {
            "type": "string",
            "description": "Optional blog category slug"
          }
        },
        "required": []
      }
    },
    {
      "name": "view_blog_article",
      "description": "Read a specific Saekue blog article by slug.",
      "url": "https://www.saekue.com/blog/{slug}",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string",
            "description": "Blog article URL slug"
          }
        },
        "required": ["slug"]
      }
    },
    {
      "name": "contact_saekue",
      "description": "Open the Saekue contact page for support, partnerships, or listing enquiries.",
      "url": "https://www.saekue.com/contact",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {},
        "required": []
      }
    },
    {
      "name": "view_faq",
      "description": "Read frequently asked questions about buying, renting, and using Saekue in Zimbabwe.",
      "url": "https://www.saekue.com/faq",
      "method": "GET",
      "parameters": {
        "type": "object",
        "properties": {},
        "required": []
      }
    }
  ]
}
