MCP Spotify Server

get_artist_albums

Retrieve detailed information about an artist's albums from Spotify, including album type, limit, and offset. Supports filtering by album groups for precise catalog exploration.

Instructions

Get Spotify catalog information about an artist's albums

Input Schema

NameRequiredDescriptionDefault
idYesThe Spotify ID or URI for the artist
include_groupsNoOptional. Filter by album types
limitNoMaximum number of albums to return (1-50)
offsetNoThe index of the first album to return

Input Schema (JSON Schema)

{ "properties": { "id": { "description": "The Spotify ID or URI for the artist", "type": "string" }, "include_groups": { "description": "Optional. Filter by album types", "items": { "enum": [ "album", "single", "appears_on", "compilation" ], "type": "string" }, "type": "array" }, "limit": { "default": 20, "description": "Maximum number of albums to return (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "offset": { "default": 0, "description": "The index of the first album to return", "minimum": 0, "type": "number" } }, "required": [ "id" ], "type": "object" }
ID: mmrvuig6tp