show_new_episodes
Find new episodes across your saved podcast shows within a configurable lookback window, see which ones you already saved, and control API cost with budgets and dry-run preview.
Instructions
Find new episodes across your saved podcast shows: reports episodes released within the lookback window (default 7 days), marking which are already saved in your episode library. Fetches /me/shows then each show's latest episodes. WARNING: M saved shows → M+1 requests (1 show page + M episode lookups). Use max_shows to budget and dry_run to preview the cost before running.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Lookback window in days. Default 7. | |
| dry_run | No | Preview only: validate inputs and describe exactly what would change without performing it | |
| max_shows | No | Per-call budget for show episode lookups. Default: 25 (or SPOTIFY_MCP_FRESHNESS_BUDGET / SPOTIFY_MCP_SHOWRADAR_BUDGET). Scan caps at min(budget, SPOTIFY_MCP_FETCH_ALL_CAP) and reports truncation. WARNING: each lookup is an API request. | |
| max_results | No | Max items to return (default: SPOTIFY_MCP_MAX_ITEMS env or 50) | |
| per_show_limit | No | How many latest episodes to check per show for recency. Default 3. | |
| response_format | No | 'concise' = human prose, 'detailed' = more fields in prose, 'json' = raw API object | concise |