split_playlist_by_count
Split a Spotify playlist into N roughly equal parts, saving each as a new playlist with a prefix. Preview the plan first via the default dry-run, then commit to create the playlists.
Instructions
Split a playlist into N roughly-equal parts, each written to a NEW playlist named " 1..N" — dry_run defaults to TRUE so it returns the part plan read-only. Quota: 🟡 GET + N creates + chunked adds when committing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parts | No | Number of parts (2–50). Default 2 | |
| prefix | No | New playlist name prefix. Default: "<original name> — Part" | |
| public | No | Public visibility for a newly created playlist. Default: private | |
| dry_run | No | Preview only: perform the read side and return a PLAN without changing anything. Pass false to commit. Default true | |
| max_results | No | Max items to return (default: SPOTIFY_MCP_MAX_ITEMS env or 50) | |
| playlist_id | Yes | Playlist to split (ID or spotify:playlist: URI) | |
| response_format | No | 'concise' = human prose, 'detailed' = more fields in prose, 'json' = raw API object | concise |