{
  "schema_version": "1.0",
  "serverInfo": {
    "name": "Knysna Sunset Cruise",
    "version": "1.0.0",
    "description": "MCP server exposing Knysna Sunset Cruise booking information and tools for AI agents.",
    "homepage": "https://knysnasunsetcruise.co.za"
  },
  "transport": {
    "type": "http",
    "url": "https://knysnasunsetcruise.co.za/api/mcp"
  },
  "capabilities": {
    "tools": true,
    "resources": false,
    "prompts": false
  },
  "tools": [
    {
      "name": "get_cruise_info",
      "description": "Get details about available Knysna Sunset Cruise packages, pricing, and inclusions.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_booking_url",
      "description": "Get the booking URL to reserve a Knysna Sunset Cruise.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "boat": {
            "type": "string",
            "description": "Preferred boat: sophia (4 guests), pamela (9 guests), or coquette (14 guests)",
            "enum": ["sophia", "pamela", "coquette"]
          }
        }
      }
    }
  ]
}
