get_artist_albums
Fetches an artist's albums and singles from Spotify using their artist ID, with options to filter by album type and paginate results.
Instructions
List an artist's albums and singles
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Spotify artist ID | |
| limit | No | Results per page, 1–10. Default: 10 | |
| market | No | ISO 3166-1 alpha-2 country code. Defaults to the account country; affects album availability. | |
| offset | No | Index of the first album 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) | |
| include_groups | No | Album types to include. Default: ["album","single"] | |
| response_format | No | 'concise' = human prose, 'detailed' = more fields in prose, 'json' = raw API object | concise |