Skip to main content
Glama

delete_playlist

Remove a specific playlist from a radio station. Use when you need to delete a non-rotation playlist; the rotation playlist cannot be deleted.

Instructions

Delete a single playlist for a station. The rotation playlist cannot be deleted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
station_idYesThe station ID
playlist_idYesThe playlist ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/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 usefully discloses the rotation-playlist restriction, but a delete tool should also flag irreversibility, required permissions, and what happens to tracks inside the playlist. One important constraint is present; the destructive profile is not.

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 sentences, no filler, with the core action stated first and the exception immediately after. Every sentence earns its place.

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 two-parameter destructive tool with no annotations and no output schema, the description covers the minimum plus one constraint, but leaves side effects on contained tracks and failure modes unexplained.

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% and both parameters (station_id, playlist_id) are documented in the schema itself. The description adds no format, range, or lookup guidance beyond the schema, so the baseline of 3 applies.

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?

States a specific verb and resource ('Delete a single playlist') and scopes it to a station, which separates it from delete_track and delete_automation_algorithm. It does not explicitly name a sibling alternative, but the resource noun is unambiguous.

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

Usage Guidelines3/5

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

Gives one concrete guardrail ('The rotation playlist cannot be deleted'), which is real usage guidance, but never states when to use this versus delete_track_from_playlist or removal of an empty playlist. Usage is implied rather than laid out.

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