Spotify MCP Server

by marcelmarais
Verified

addTracksToPlaylist

Add multiple tracks to a specified Spotify playlist using track IDs and insert them at a desired position via the Spotify MCP Server.

Instructions

Add tracks to a Spotify playlist

Input Schema

NameRequiredDescriptionDefault
playlistIdYesThe Spotify ID of the playlist
positionNoPosition to insert the tracks (0-based index)
trackIdsYesArray of Spotify track IDs to add

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "playlistId": { "description": "The Spotify ID of the playlist", "type": "string" }, "position": { "description": "Position to insert the tracks (0-based index)", "minimum": 0, "type": "number" }, "trackIds": { "description": "Array of Spotify track IDs to add", "items": { "type": "string" }, "type": "array" } }, "required": [ "playlistId", "trackIds" ], "type": "object" }

You must be authenticated.

Other Tools from Spotify MCP Server

Related Tools

ID: wu15pi580l