Spotify MCP Server

by marcelmarais
Verified

getPlaylistTracks

Retrieve a list of tracks from a Spotify playlist by specifying its ID and optional track limit. Integrates with the Spotify MCP Server for streamlined playlist management.

Instructions

Get a list of tracks in a Spotify playlist

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of tracks to return (1-50)
playlistIdYesThe Spotify ID of the playlist

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "description": "Maximum number of tracks to return (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "playlistId": { "description": "The Spotify ID of the playlist", "type": "string" } }, "required": [ "playlistId" ], "type": "object" }

You must be authenticated.

Other Tools from Spotify MCP Server

Related Tools

ID: wu15pi580l