Skip to main content
Glama

add_track_to_playlist

Append a single track to a laut.fm playlist only if it is not already included. Provide station, playlist, and track IDs to update the playlist.

Instructions

Append a single track to a playlist. The track must not already be in the playlist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_idYesThe track ID to add
station_idYesThe station ID
playlist_idYesThe playlist 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?

With no annotations, the description carries the full behavioral burden. It discloses the duplicate-track precondition, which is useful, but omits mutation side effects, permission requirements, error behavior, and whether the operation is reversible.

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?

Two short sentences with zero waste. The core action is front-loaded and the precondition follows efficiently.

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 three-parameter mutation with no annotations and no output schema, the description is minimally adequate but incomplete. It does not explain permissions, failure cases, or what the append operation returns, which leaves notable gaps.

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 description coverage is 100%, so the schema already documents all three parameters. The description does not add syntax, format, or relational meaning beyond what the schema provides, so the baseline 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 and resource: 'Append a single track to a playlist.' It is clear enough to distinguish from read/delete siblings by name and action, though it does not explicitly name or contrast with them.

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?

It provides the precondition that the track must not already be in the playlist, but gives no explicit when-to-use guidance, no alternatives, and no exclusions beyond that single constraint.

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