Skip to main content
Glama

get_schedule

Retrieve the broadcast schedule for a specified laut.fm station using its station ID to see upcoming programming.

Instructions

Get the schedule for a station

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
station_idYesThe station ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden. It does not state whether this is read-only (though 'get' implies it), whether pagination or time-window behavior applies, what the returned schedule contains, or any auth/rate-limit constraints. For a tool with zero annotation coverage, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence with no waste, front-loading the verb and resource immediately. It is appropriately sized for a simple one-parameter getter.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, no output schema, and a minimal single-parameter schema, the description is too sparse. It should clarify read-only nature, expected return shape, and any scope constraints to be complete for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with the single parameter 'station_id' fully described in the schema as 'The station ID'. The description adds no parameter detail beyond what the schema already provides, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb-resource pair ('Get the schedule') tied to a station, which is clear and distinguishable from siblings like update_schedule or get_playlists. However, it does not explicitly differentiate itself from the sibling update_schedule or clarify scope (e.g., time range, recurring slots), so it stops short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives like get_current_playlist or update_schedule. The description gives a bare purpose but no conditions, prerequisites, or exclusions, leaving usage entirely to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.