MCP Spotify Server

get_category_playlists

Get a list of Spotify playlists tagged with a particular category

Input Schema

NameRequiredDescriptionDefault
category_idYesThe Spotify category ID
limitNoOptional. Maximum number of playlists (1-50)
offsetNoOptional. Index of the first playlist to return

Input Schema (JSON Schema)

{ "properties": { "category_id": { "description": "The Spotify category ID", "type": "string" }, "limit": { "description": "Optional. Maximum number of playlists (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "offset": { "description": "Optional. Index of the first playlist to return", "minimum": 0, "type": "number" } }, "required": [ "category_id" ], "type": "object" }