playlist_balance
Split a Spotify playlist into several balanced playlists using sequential chunks or round-robin interleaving, leaving the original playlist untouched.
Instructions
Split a playlist into N balanced new playlists: sequential chunks (part 1 = first third, …) or interleave (round-robin deal, so every part samples the whole span). Creates N new playlists; the source is left untouched. Quota: 🟡 2 GETs + N creates + chunked adds.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parts | Yes | How many playlists to create (2–10) | |
| public | No | New playlists public? Default false (private) | |
| dry_run | No | Preview only: perform the read side and return a PLAN without changing anything. Pass false to commit. Default true | |
| strategy | No | sequential = contiguous chunks in order; interleave = round-robin deal. Default interleave | interleave |
| max_results | No | Max items to return (default: SPOTIFY_MCP_MAX_ITEMS env or 50) | |
| name_prefix | No | Name prefix for the new playlists. Default "<source name> — Part" | |
| playlist_id | Yes | Playlist to split, as ID or spotify:playlist: URI | |
| response_format | No | 'concise' = human prose, 'detailed' = more fields in prose, 'json' = raw API object | concise |