add-tracks-to-playlist
Add multiple tracks to a Spotify playlist using their track IDs. Specify the playlist ID and track IDs to update your playlist directly through the MCP Claude Spotify integration.
Instructions
Add tracks to a playlist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playlistId | Yes | Spotify ID of the playlist | |
trackIds | Yes | Array of Spotify track IDs to add |
Input Schema (JSON Schema)
{
"properties": {
"playlistId": {
"description": "Spotify ID of the playlist",
"type": "string"
},
"trackIds": {
"description": "Array of Spotify track IDs to add",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"playlistId",
"trackIds"
],
"type": "object"
}