add_tracks_to_playlist
Use this tool to add multiple tracks to a Spotify playlist by specifying their URIs. Simplify playlist management within the Multi-MCPs MCP server environment.
Instructions
Add tracks to a playlist by URIs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playlist_id | Yes | ||
tracks | Yes |
Input Schema (JSON Schema)
{
"properties": {
"playlist_id": {
"type": "string"
},
"tracks": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"playlist_id",
"tracks"
],
"type": "object"
}