MCP Spotify Server

get_album_tracks

Retrieve Spotify catalog details for tracks within a specific album, including track names, IDs, and metadata. Input the album ID or URI, limit results, and specify an offset for paginated results.

Instructions

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" }
ID: mmrvuig6tp