get_colocated_events
Retrieve co-located events for Monday at KubeCon Europe 2026, including ArgoCon and CiliumCon, with details on duration, room locations, and requirements.
Instructions
Get Monday's co-located events (ArgoCon, CiliumCon, Agentics Day, etc.).
Returns: JSON array of co-located events with name, duration, room, and requirements.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/kubecon_eu_mcp/server.py:244-252 (handler)The MCP tool handler function 'get_colocated_events' which returns JSON data of Monday's co-located events.
@mcp.tool() async def get_colocated_events() -> str: """Get Monday's co-located events (ArgoCon, CiliumCon, Agentics Day, etc.). Returns: JSON array of co-located events with name, duration, room, and requirements. """ events = data_service.get_colocated_events() return json.dumps([e.to_dict() for e in events], indent=2) - Data service method that provides the underlying co-located events data.
def get_colocated_events(self) -> list[ColocatedEvent]: return COLOCATED_EVENTS