MCP Spotify Server

get_recommendations

Get track recommendations based on seed tracks, artists, or genres

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of recommendations (1-100)
seed_artistsNoArray of Spotify artist IDs or URIs
seed_genresNoArray of genre names
seed_tracksNoArray of Spotify track IDs or URIs

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 20, "description": "Maximum number of recommendations (1-100)", "maximum": 100, "minimum": 1, "type": "number" }, "seed_artists": { "description": "Array of Spotify artist IDs or URIs", "items": { "type": "string" }, "type": "array" }, "seed_genres": { "description": "Array of genre names", "items": { "type": "string" }, "type": "array" }, "seed_tracks": { "description": "Array of Spotify track IDs or URIs", "items": { "type": "string" }, "type": "array" } }, "required": [], "type": "object" }