Spotify MCP Server

SpotifySearch

Search for tracks, albums, artists, or playlists on Spotify.

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of items to return
qtypeNoType of items to search for (track, album, artist, playlist, or comma-separated combination)track
queryYesquery term

Input Schema (JSON Schema)

{ "description": "Search for tracks, albums, artists, or playlists on Spotify.", "properties": { "limit": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 10, "description": "Maximum number of items to return", "title": "Limit" }, "qtype": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "track", "description": "Type of items to search for (track, album, artist, playlist, or comma-separated combination)", "title": "Qtype" }, "query": { "description": "query term", "title": "Query", "type": "string" } }, "required": [ "query" ], "title": "Search", "type": "object" }