add-tracks-to-playlist
Add multiple Spotify tracks to a specific playlist by providing the playlist ID and track URIs. Integrates with Spotify MCP Server for streamlined playlist management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playlistId | Yes | The Spotify playlist ID | |
trackUris | Yes | Array of Spotify track URIs to add |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"playlistId": {
"description": "The Spotify playlist ID",
"type": "string"
},
"trackUris": {
"description": "Array of Spotify track URIs to add",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"playlistId",
"trackUris"
],
"type": "object"
}