MCP Spotify Server

remove_tracks_from_playlist

Remove one or more tracks from a playlist

Input Schema

NameRequiredDescriptionDefault
idYesThe Spotify ID or URI of the playlist
snapshot_idNoOptional. The playlist's snapshot ID
tracksYesArray of objects containing Spotify track URIs to remove

Input Schema (JSON Schema)

{ "properties": { "id": { "description": "The Spotify ID or URI of the playlist", "type": "string" }, "snapshot_id": { "description": "Optional. The playlist's snapshot ID", "type": "string" }, "tracks": { "description": "Array of objects containing Spotify track URIs to remove", "items": { "properties": { "positions": { "description": "Optional positions of the track to remove", "items": { "type": "number" }, "type": "array" }, "uri": { "description": "Spotify URI of the track to remove", "type": "string" } }, "required": [ "uri" ], "type": "object" }, "type": "array" } }, "required": [ "id", "tracks" ], "type": "object" }