get_album_tracks
Retrieve an album's track list with pagination, market filtering, and optional fetch-all for complete results.
Instructions
List the tracks of an album with pagination
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Spotify album ID | |
| limit | No | Results per page, 1–50. Default: 20 | |
| market | No | ISO 3166-1 alpha-2 country code. Defaults to the account country; affects track availability. | |
| offset | No | Index of the first track to return. Default: 0 | |
| fetch_all | No | When true, walk all pages via getAllPages up to cap (fetch_all_cap) — use for "all" queries. Default: false | |
| max_results | No | Max items to return (default: SPOTIFY_MCP_MAX_ITEMS env or 50) | |
| response_format | No | 'concise' = human prose, 'detailed' = more fields in prose, 'json' = raw API object | concise |