get-recommendations
Generate personalized Spotify track recommendations using specific tracks, artists, or genres as seeds. Customize results by setting a limit to discover tailored playlists.
Instructions
Get track recommendations based on seeds
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of tracks to return (1-100, default: 20) | |
seedArtists | No | Array of Spotify artist IDs to use as seeds (optional) | |
seedGenres | No | Array of genre names to use as seeds (optional) | |
seedTracks | No | Array of Spotify track IDs to use as seeds (optional) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of tracks to return (1-100, default: 20)",
"type": "number"
},
"seedArtists": {
"description": "Array of Spotify artist IDs to use as seeds (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"seedGenres": {
"description": "Array of genre names to use as seeds (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"seedTracks": {
"description": "Array of Spotify track IDs to use as seeds (optional)",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}