MCP Spotify Server

search

Search for tracks, albums, artists, or playlists

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of results (1-50)
queryYesSearch query
typeYesType of item to search for

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 20, "description": "Maximum number of results (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "query": { "description": "Search query", "type": "string" }, "type": { "description": "Type of item to search for", "enum": [ "track", "album", "artist", "playlist" ], "type": "string" } }, "required": [ "query", "type" ], "type": "object" }