MCP Spotify Server

get_current_user_playlists

Get a list of the playlists owned or followed by the current Spotify user

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of playlists to return (1-50)
offsetNoThe index of the first playlist to return

Input Schema (JSON Schema)

{ "properties": { "limit": { "description": "Maximum number of playlists to return (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "offset": { "description": "The index of the first playlist to return", "minimum": 0, "type": "number" } }, "type": "object" }