get_show_episodes
Retrieve episodes of a podcast show by Spotify ID, supporting pagination, market filtering, and fetching all results.
Instructions
[Deprecated] use list_show_episodes — List a podcast show's episodes with pagination. Alias kept for backward compat; forwards to same GET /shows/{id}/episodes as list_show_episodes. Resume positions require the user-read-playback-position scope. Also covers: show episode listing, paged podcast episodes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Spotify show ID | |
| limit | No | Results per page, 1–50. Default: 20 | |
| market | No | ISO 3166-1 alpha-2 country code. If given, only shows and episodes available in that market are returned. | |
| offset | No | Index of the first episode 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 |