get_conference_overview
Retrieve a high-level overview of KubeCon + CloudNativeCon Europe 2026 conference details including event dates, schedule highlights, and useful links for planning.
Instructions
Get a high-level overview of the entire conference.
Returns: JSON with event name, dates, schedule at a glance, and useful links.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/kubecon_eu_mcp/server.py:256-263 (handler)The core handler function for the `get_conference_overview` MCP tool.
async def get_conference_overview() -> str: """Get a high-level overview of the entire conference. Returns: JSON with event name, dates, schedule at a glance, and useful links. """ overview = data_service.get_schedule_overview() return json.dumps(overview, indent=2) - src/kubecon_eu_mcp/server.py:255-255 (registration)Registration of the `get_conference_overview` tool using the `@mcp.tool()` decorator.
@mcp.tool()