get_playlist_tracks
Retrieve and display all tracks from a specific TIDAL playlist, including track names, artists, albums, and durations. Use playlist_id to fetch and organize playlist content for clear viewing.
Instructions
Retrieves all tracks from a specified TIDAL playlist.
USE THIS TOOL WHENEVER A USER ASKS FOR:
- "Show me the songs in my playlist"
- "What tracks are in my [playlist name] playlist?"
- "List the songs from my playlist"
- "Get tracks from my playlist"
- "View contents of my TIDAL playlist"
- Any request to see what songs/tracks are in a specific playlist
This function retrieves all tracks from a specific playlist in the user's TIDAL account.
The playlist_id must be provided, which can be obtained from the get_user_playlists() function.
When processing the results of this tool:
1. Present the playlist information (title, description, track count) as context
2. List the tracks in a clear, organized format with track name, artist, and album
3. Include track durations where available
4. Mention the total number of tracks in the playlist
5. If there are many tracks, focus on highlighting interesting patterns or variety
Args:
playlist_id: The TIDAL ID of the playlist to retrieve (required)
limit: Maximum number of tracks to retrieve (default: 100)
Returns:
A dictionary containing the playlist information and all tracks in the playlist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
playlist_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"playlist_id": {
"title": "Playlist Id",
"type": "string"
}
},
"required": [
"playlist_id"
],
"title": "get_playlist_tracksArguments",
"type": "object"
}