search_tracks
Search and retrieve Spotify tracks by entering a query and optional limit. Part of the Multi-MCPs server, which integrates multiple APIs for unified access to web services.
Instructions
Search tracks on Spotify
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"type": "number"
},
"query": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}