getMyPlaylists
Retrieve a list of your Spotify playlists using the MCP Server. Specify a limit (1-50) to control the number of playlists returned.
Instructions
Get a list of the current user's playlists on Spotify
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of playlists to return (1-50) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of playlists to return (1-50)",
"maximum": 50,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}