manage_queue
Control and modify the Spotify playback queue by adding tracks or retrieving the current queue using specified actions and track IDs. Simplify queue management for enhanced listening experiences.
Instructions
Manage playback queue.
Args:
action: Action ('add' or 'get')
track_id: Track ID (for 'add')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
track_id | No |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"title": "Action",
"type": "string"
},
"track_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Track Id"
}
},
"required": [
"action"
],
"title": "manage_queueArguments",
"type": "object"
}