Spotify MCP

get_recommendations

Get Spotify recommendations based on seeds Args: seed_artists: Comma-separated artist IDs seed_tracks: Comma-separated track IDs seed_genres: Comma-separated genres limit: Number of recommendations

Input Schema

NameRequiredDescriptionDefault
limitNo
seed_artistsNo
seed_genresNo
seed_tracksNo

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 20, "title": "Limit", "type": "integer" }, "seed_artists": { "default": null, "title": "Seed Artists", "type": "string" }, "seed_genres": { "default": null, "title": "Seed Genres", "type": "string" }, "seed_tracks": { "default": null, "title": "Seed Tracks", "type": "string" } }, "title": "get_recommendationsArguments", "type": "object" }