delete_tidal_playlist
Remove a specific playlist from your TIDAL account using its unique ID. Authenticate with TIDAL, provide the playlist ID, and confirm deletion directly through the tool.
Instructions
Deletes a TIDAL playlist by its ID.
USE THIS TOOL WHENEVER A USER ASKS FOR:
- "Delete my playlist"
- "Remove a playlist from my TIDAL account"
- "Get rid of this playlist"
- "Delete the playlist with ID X"
- Any request to delete or remove a TIDAL playlist
This function deletes a specific playlist from the user's TIDAL account.
The user must be authenticated with TIDAL first.
When processing the results of this tool:
1. Confirm the playlist was deleted successfully
2. Provide a clear message about the deletion
Args:
playlist_id: The TIDAL ID of the playlist to delete (required)
Returns:
A dictionary containing the status of the playlist deletion
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playlist_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"playlist_id": {
"title": "Playlist Id",
"type": "string"
}
},
"required": [
"playlist_id"
],
"title": "delete_tidal_playlistArguments",
"type": "object"
}