{
    "protocol": "mcp",
    "version": "1.0",
    "server_name": "BusinessHotels MCP for Grok",
    "tools": [
        {
            "name": "get_live_hotel_rates",
            "description": "Get real-time live hotel rates with all-in pricing (taxes & fees included), availability, and direct booking URLs from BusinessHotels.com",
            "input_schema": {
                "$schema": "https://json-schema.org/draft/2020-12/schema",
                "type": "object",
                "properties": {
                    "hotelName": {
                        "type": "string",
                        "description": "Full hotel name, preferably with city and country (e.g. 'The Ritz-Carlton, San Francisco, US')"
                    },
                    "checkinDate": {
                        "type": "string",
                        "description": "Check-in date in YYYY-MM-DD format"
                    },
                    "checkoutDate": {
                        "type": "string",
                        "description": "Check-out date in YYYY-MM-DD format"
                    },
                    "adults": {
                        "type": "integer",
                        "minimum": 1,
                        "default": 2
                    },
                    "currency": {
                        "type": "string",
                        "default": "USD"
                    },
                    "city": {
                        "type": "string",
                        "description": "Optional: City name to improve matching accuracy"
                    }
                },
                "required": [
                    "hotelName",
                    "checkinDate",
                    "checkoutDate"
                ],
                "additionalProperties": false
            }
        }
    ]
}