Skip to main content
Glama
njoerd114

kubecon-eu-mcp

by njoerd114

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
NameRequiredDescriptionDefault
dayYes

Implementation Reference

  • 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)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/njoerd114/kubecon-eu-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server