Skip to main content
Glama

remove_tracks

Remove selected tracks from a Spotify playlist by specifying the playlist ID and track IDs.

Instructions

Remove one or more tracks from a playlist. playlist_id and track_ids come from list_user_playlists and playlist_tracks.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_idsYes
playlist_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/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 burden. It only states the mutation action without disclosing side effects, permission requirements, error handling, or reversibility. For a destructive operation, this is insufficient detail.

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?

A single, front-loaded sentence that states the action first and then adds the sourcing hint with zero filler. Efficient and clear.

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?

The tool is simple with two parameters and an output schema exists, so return value coverage is not required. However, behavioral details like error handling, partial success, and idempotency are missing, making it adequate but not fully complete for a mutation tool.

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 0%, so the description must compensate. It adds the context that parameter values come from specific sibling tools, which is useful, but it does not explain formats or constraints beyond the schema titles. This provides some value but not deep semantic meaning.

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

Purpose5/5

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

The description clearly states a specific action ('Remove one or more tracks from a playlist') with a clear verb and resource, distinguishing it from siblings like add_tracks and unlike_tracks. It also identifies the source of required IDs, reinforcing purpose.

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

Usage Guidelines4/5

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

It explicitly instructs that playlist_id and track_ids come from list_user_playlists and playlist_tracks, giving a concrete workflow context. However, it does not explicitly contrast with alternatives or state when not to use it, so it stops short of full guidance.

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