get_playlist
Retrieve a Spotify playlist's metadata, cover image, and items with pagination and fetch-all options.
Instructions
Get a playlist's metadata (including cover image) and items
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Alias for playlist_id | |
| limit | No | Items per page, 1–100. Default: 50 | |
| offset | No | Pagination offset for items. Default: 0 | |
| fetch_all | No | Fetch all items across pages (up to 500), continuing FROM offset. limit is the page size. Note: library tools' fetch_all ignores offset — contracts differ between modules (#110). | |
| max_results | No | Max items to return (default: SPOTIFY_MCP_MAX_ITEMS env or 50) | |
| playlist_id | No | Playlist ID | |
| response_format | No | 'concise' = human prose, 'detailed' = more fields in prose, 'json' = raw API object | concise |