search_deep
Search Spotify catalog beyond the 10-result API limit by walking multiple pages per content type, deduplicating results, and returning compact rows with name, artists, album, and URI.
Instructions
Paged catalog search that walks past the API limit of 10 results per type. Fetches up to 5 pages of 10 results per requested type server-side, dedupes by id, and returns compact rows (name | artists | album | URI).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pages | No | Pages of 10 results to walk per type, 1–5. Default: 1 | |
| query | Yes | Search query | |
| types | No | Content types to search. Default: ["track"] | |
| market | No | ISO 3166-1 alpha-2 country code | |
| 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 |