Spotify MCP

get_item_info

Get detailed information about a Spotify item Args: item_id: Spotify ID type: One of 'track', 'album', 'artist', 'playlist'

Input Schema

NameRequiredDescriptionDefault
item_idYes
typeNotrack

Input Schema (JSON Schema)

{ "properties": { "item_id": { "title": "Item Id", "type": "string" }, "type": { "default": "track", "title": "Type", "type": "string" } }, "required": [ "item_id" ], "title": "get_item_infoArguments", "type": "object" }