MCP Spotify Server

modify_playlist

Change a playlist's name and public/private state

Input Schema

NameRequiredDescriptionDefault
collaborativeNoOptional. If true, the playlist will become collaborative
descriptionNoOptional. New description for the playlist
idYesThe Spotify ID or URI of the playlist
nameNoOptional. New name for the playlist
publicNoOptional. If true the playlist will be public

Input Schema (JSON Schema)

{ "properties": { "collaborative": { "description": "Optional. If true, the playlist will become collaborative", "type": "boolean" }, "description": { "description": "Optional. New description for the playlist", "type": "string" }, "id": { "description": "The Spotify ID or URI of the playlist", "type": "string" }, "name": { "description": "Optional. New name for the playlist", "type": "string" }, "public": { "description": "Optional. If true the playlist will be public", "type": "boolean" } }, "required": [ "id" ], "type": "object" }