Spotify MCP

search_spotify

Search Spotify for tracks, artists, albums, or playlists. Args: query: Search term type: One of 'track', 'artist', 'album', 'playlist' limit: Max number of results

Input Schema

NameRequiredDescriptionDefault
limitNo
queryYes
typeNotrack

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 20, "title": "Limit", "type": "integer" }, "query": { "title": "Query", "type": "string" }, "type": { "default": "track", "title": "Type", "type": "string" } }, "required": [ "query" ], "title": "search_spotifyArguments", "type": "object" }