get_venue_info
Retrieve venue details including address, rooms, maps, and transit information for conference logistics planning.
Instructions
Get venue details: address, rooms, maps, and transit information.
Returns: JSON with venue name, address, room list, map links, transit info, and parking.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/kubecon_eu_mcp/server.py:198-206 (handler)The get_venue_info function is a tool decorated with @mcp.tool() that retrieves venue information using the data_service and returns it as a JSON string.
@mcp.tool() async def get_venue_info() -> str: """Get venue details: address, rooms, maps, and transit information. Returns: JSON with venue name, address, room list, map links, transit info, and parking. """ venue = data_service.get_venue() return json.dumps(venue.to_dict(), indent=2)