search-spotify
Search Spotify for tracks, albums, artists, or playlists by specifying a query and item type. Retrieve up to 50 results, ideal for finding music content quickly.
Instructions
Search for tracks, albums, artists, or playlists on Spotify
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results to return (1-50, default: 10) | |
query | Yes | Search query | |
type | No | Type of item to search for (default: track) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of results to return (1-50, default: 10)",
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
},
"type": {
"description": "Type of item to search for (default: track)",
"enum": [
"track",
"album",
"artist",
"playlist"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}