MCP Spotify Server

get_playlist_tracks

Get full details of the tracks of a playlist

Input Schema

NameRequiredDescriptionDefault
fieldsNoOptional. Filters for the query
idYesThe Spotify ID or URI of the playlist
limitNoOptional. Maximum number of tracks to return (1-100)
marketNoOptional. An ISO 3166-1 alpha-2 country code
offsetNoOptional. Index of the first track to return

Input Schema (JSON Schema)

{ "properties": { "fields": { "description": "Optional. Filters for the query", "type": "string" }, "id": { "description": "The Spotify ID or URI of the playlist", "type": "string" }, "limit": { "description": "Optional. Maximum number of tracks to return (1-100)", "maximum": 100, "minimum": 1, "type": "number" }, "market": { "description": "Optional. An ISO 3166-1 alpha-2 country code", "type": "string" }, "offset": { "description": "Optional. Index of the first track to return", "minimum": 0, "type": "number" } }, "required": [ "id" ], "type": "object" }