Skip to main content
Glama

get_live_password

Retrieve the live streaming password for a laut.fm radio station using its station ID to set up live broadcasts.

Instructions

Get the live streaming password 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

B3.1/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 signals that the result is sensitive by naming a 'live streaming password,' but it does not disclose permissions, read-only behavior, rate limits, secret exposure, or return format.

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, front-loaded sentence with no wasted words. Its size is appropriate for a simple one-parameter retrieval tool.

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

Completeness3/5

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

For a simple read operation, the description gives enough information to invoke the tool with station_id. However, with no annotations and no output schema, it lacks return details, authentication/security context, and sibling relationship guidance.

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?

There is one required parameter, station_id, and schema description coverage is 100%. The schema already documents the parameter as 'The station ID,' and the description adds no format, range, or source detail beyond that baseline.

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 uses a specific verb and resource: 'Get the live streaming password for a station.' This clearly identifies the operation. However, it does not differentiate the tool from related siblings such as get_live_connection_info or explain how they differ.

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?

The description does not state when to use this tool, when not to use it, or what alternatives exist. Use is only implied by the tool name and resource, and there is no routing guidance among the many station/playlist siblings.

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