MCP Spotify Server

get_audiobook_chapters

Get Spotify catalog information about an audiobook's chapters

Input Schema

NameRequiredDescriptionDefault
idYesThe Spotify ID or URI for the audiobook
limitNoMaximum number of chapters to return (1-50)
marketNoOptional. An ISO 3166-1 alpha-2 country code
offsetNoThe index of the first chapter to return

Input Schema (JSON Schema)

{ "properties": { "id": { "description": "The Spotify ID or URI for the audiobook", "type": "string" }, "limit": { "description": "Maximum number of chapters to return (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "market": { "description": "Optional. An ISO 3166-1 alpha-2 country code", "type": "string" }, "offset": { "description": "The index of the first chapter to return", "minimum": 0, "type": "number" } }, "required": [ "id" ], "type": "object" }