get_hotel_info
Retrieve hotel block details for KubeCon Europe 2026, including rates, distances to the venue, and availability to help attendees plan their stay.
Instructions
Get conference hotel block information with rates and distances.
Returns: JSON array of hotels with name, address, rate, distance to venue, and availability.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/kubecon_eu_mcp/server.py:210-217 (handler)The handler function for the `get_hotel_info` tool.
async def get_hotel_info() -> str: """Get conference hotel block information with rates and distances. Returns: JSON array of hotels with name, address, rate, distance to venue, and availability. """ hotels = data_service.get_hotels() return json.dumps([h.to_dict() for h in hotels], indent=2) - src/kubecon_eu_mcp/server.py:209-209 (registration)Registration of the `get_hotel_info` tool using the `@mcp.tool()` decorator.
@mcp.tool()