get_schedule
Retrieve the complete conference schedule for a specific day at KubeCon + CloudNativeCon Europe 2026, returning all sessions sorted chronologically to help attendees plan their agenda.
Instructions
Get the full conference schedule for a specific day.
Args: day: Day name — "monday" (co-located), "tuesday", "wednesday", or "thursday".
Returns: JSON array of all sessions for that day, sorted by start time.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| day | Yes |
Implementation Reference
- src/kubecon_eu_mcp/server.py:91-110 (handler)The 'get_schedule' tool handler function which calls data_service.get_schedule_for_day to retrieve sessions for a given day.
@mcp.tool() async def get_schedule(day: str) -> str: """Get the full conference schedule for a specific day. Args: day: Day name — "monday" (co-located), "tuesday", "wednesday", or "thursday". Returns: JSON array of all sessions for that day, sorted by start time. """ sessions = await data_service.get_schedule_for_day(day) if not sessions: return json.dumps( { "message": f"No sessions found for {day}.", "hint": "Valid days: monday, tuesday, wednesday, thursday", } ) return json.dumps([s.to_dict() for s in sessions], indent=2)