Skip to main content
Glama
ElBeldu

Spotify MCP Server

by ElBeldu

removeTracksFromPlaylist

Remove specific tracks from a Spotify playlist by supplying the playlist ID and track IDs; optionally target a snapshot ID and remove up to 100 tracks per request.

Instructions

Remove one or more tracks from a Spotify playlist (max 100 tracks per request)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
trackIdsYesArray of Spotify track IDs to remove (max 100)
playlistIdYesThe Spotify ID of the playlist
snapshotIdNoThe playlist snapshot ID to target a specific version (optional)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/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, and it does not deliver. It says nothing about whether removal is irreversible, what permissions/scopes are required, how snapshotId affects conflict behavior, or what happens on partial failure. The 'max 100' note merely restates the schema's maxItems constraint rather than adding new disclosure.

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?

One sentence, front-loaded with the core action, with the batch limit parenthetically attached. Nothing is wasted.

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?

There is no output schema and no annotations, so the description should compensate for a destructive mutation on a 3-parameter tool. It covers the action and batch ceiling but leaves permission requirements, snapshot semantics, and error/partial-failure behavior unaddressed.

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 explains playlistId, trackIds, and snapshotId. The description adds no parameter meaning beyond what is structured, so the baseline of 3 applies.

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?

States a specific verb (remove) plus resource (tracks from a Spotify playlist), and the batch ceiling. It is clearly distinguishable from sibling tools like addTracksToPlaylist and removeUsersSavedTracks (library vs. playlist).

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?

Usage is implied by the name and description – you call it when you want tracks gone from a playlist. There is no explicit when-to-use, no when-not-to-use, and no routing to alternatives such as updatePlaylist or reorderPlaylistItems.

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