show_episode_search
Search a show's episodes by name or description using case-insensitive substring matching. Filter results with pagination, market, and fetch-all options to find specific episodes.
Instructions
Full-text search within one show's episodes (GET /shows/{id}/episodes paged + client-side q). Quota: 🟡 1–N pages (fetch_all walks).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Results per page for the underlying paging, 1–50. Default: 20 | |
| query | Yes | Case-insensitive substring over name/description | |
| market | No | ISO 3166-1 alpha-2 country code | |
| offset | No | Offset for underlying paging. Default: 0 | |
| show_id | Yes | Spotify show ID | |
| fetch_all | No | When true, walk all pages (up to cap) to find matches | |
| 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 |