getRecentlyPlayed
Retrieve a list of recently played Spotify tracks using a specified limit of 1 to 50 items, enabling playback history review via the Spotify MCP Server.
Instructions
Get a list of recently played tracks on Spotify
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of tracks to return (1-50) |
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"
}
},
"type": "object"
}