MCP Spotify Server

get_new_releases

Get a list of new album releases featured in Spotify

Input Schema

NameRequiredDescriptionDefault
countryNoOptional. A country code (ISO 3166-1 alpha-2)
limitNoMaximum number of releases to return (1-50)
offsetNoThe index of the first release to return

Input Schema (JSON Schema)

{ "properties": { "country": { "description": "Optional. A country code (ISO 3166-1 alpha-2)", "type": "string" }, "limit": { "default": 20, "description": "Maximum number of releases to return (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "offset": { "default": 0, "description": "The index of the first release to return", "minimum": 0, "type": "number" } }, "type": "object" }