playMusic
Control Spotify playback by starting tracks, albums, artists, or playlists using specific URIs or IDs with support for designated devices via the Spotify MCP Server.
Instructions
Start playing a Spotify track, album, artist, or playlist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deviceId | No | The Spotify device ID to play on | |
id | No | The Spotify ID of the item to play | |
type | No | The type of item to play | |
uri | No | The Spotify URI to play (overrides type and id) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deviceId": {
"description": "The Spotify device ID to play on",
"type": "string"
},
"id": {
"description": "The Spotify ID of the item to play",
"type": "string"
},
"type": {
"description": "The type of item to play",
"enum": [
"track",
"album",
"artist",
"playlist"
],
"type": "string"
},
"uri": {
"description": "The Spotify URI to play (overrides type and id)",
"type": "string"
}
},
"type": "object"
}