playlist_move_block
Move a contiguous block of playlist items to a new position using original numbering, while the rest of the playlist closes around it. Preview with dry run, then commit as one atomic operation.
Instructions
Move a contiguous block of items (1-based start + count) so its first item lands at a target position expressed in the ORIGINAL numbering. The rest of the playlist closes up around it. Written as one atomic replace. Quota: 🟢 2 GETs + 1 PUT.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | How many contiguous items to move. Default 1 | |
| start | Yes | 1-based position of the first item to move | |
| 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 edit, as ID or spotify:playlist: URI | |
| to_position | Yes | 1-based position (ORIGINAL numbering) where the block should land | |
| response_format | No | 'concise' = human prose, 'detailed' = more fields in prose, 'json' = raw API object | concise |