browse_playlist
View playlist contents and track details including metadata like artist, album, and duration to explore your music collection.
Instructions
Browse and view the contents of a specific playlist with full track metadata
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| playlist_id | Yes | The ID of the playlist to browse | |
| limit | No | Maximum number of items to return (default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of items to return (default: 50)",
"type": "number"
},
"playlist_id": {
"description": "The ID of the playlist to browse",
"type": "string"
}
},
"required": [
"playlist_id"
],
"type": "object"
}