MCP Spotify Server

get_album_tracks

Get Spotify catalog information for an album's tracks

Input Schema

NameRequiredDescriptionDefault
idYesThe Spotify ID or URI for the album
limitNoMaximum number of tracks to return (1-50)
offsetNoThe index of the first track to return

Input Schema (JSON Schema)

{ "properties": { "id": { "description": "The Spotify ID or URI for the album", "type": "string" }, "limit": { "default": 20, "description": "Maximum number of tracks to return (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "offset": { "default": 0, "description": "The index of the first track to return", "minimum": 0, "type": "number" } }, "required": [ "id" ], "type": "object" }