{
    "protocol": "mcp",
    "version": "1.0",
    "server_name": "BusinessHotels MCP Server",
    "tools": [
        {
            "name": "get_live_hotel_rates",
            "description": "Get live hotel rates by hotelName, checkin/out date, adults, and currency.",
            "input_schema": {
                "$schema": "https://json-schema.org/draft/2020-12/schema",
                "type": "object",
                "properties": {
                    "hotelName": {
                        "type": "string",
                        "description": "Full hotel name, ideally with city/state/country."
                    },
                    "checkinDate": {
                        "type": "string",
                        "description": "YYYY-MM-DD"
                    },
                    "checkoutDate": {
                        "type": "string",
                        "description": "YYYY-MM-DD"
                    },
                    "adults": {
                        "type": "integer",
                        "minimum": 1,
                        "default": 2
                    },
                    "currency": {
                        "type": "string",
                        "default": "USD"
                    },
                    "api_key": {
                        "type": "string",
                        "description": "API key for authentication"
                    }
                },
                "required": [
                    "hotelName",
                    "checkinDate",
                    "checkoutDate"
                ],
                "additionalProperties": false
            }
        }
    ]
}