Spotify MCP Server

SpotifyGetInfo

Get detailed information about a Spotify item (track, album, artist, or playlist).

Input Schema

NameRequiredDescriptionDefault
item_idYesID of the item to get information about
qtypeNoType of item: 'track', 'album', 'artist', or 'playlist'. If 'playlist' or 'album', returns its tracks. If 'artist',returns albums and top tracks.track

Input Schema (JSON Schema)

{ "description": "Get detailed information about a Spotify item (track, album, artist, or playlist).", "properties": { "item_id": { "description": "ID of the item to get information about", "title": "Item Id", "type": "string" }, "qtype": { "default": "track", "description": "Type of item: 'track', 'album', 'artist', or 'playlist'. If 'playlist' or 'album', returns its tracks. If 'artist',returns albums and top tracks.", "title": "Qtype", "type": "string" } }, "required": [ "item_id" ], "title": "GetInfo", "type": "object" }