get_playlist_tracks
Retrieve a list of tracks from a specific playlist within the rekordbox DJ database by providing the unique playlist identifier. Supports read-only access to manage and analyze playlist content.
Instructions
Get all tracks in a specific playlist.
Args: playlist_id: The unique playlist identifier
Returns: List of tracks in the playlist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playlist_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"playlist_id": {
"title": "Playlist Id",
"type": "string"
}
},
"required": [
"playlist_id"
],
"type": "object"
}