music
Control Spotify playback on macOS with actions like play, pause, next, and adjust volume. Select mood-based playlists or search for specific tracks directly.
Instructions
Control Spotify for background music (macOS only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Music control action | |
mood | No | Mood-based playlist selection (focus, relax, energize, chill, work, or custom) | |
uri | No | Spotify URI or search term | |
volume | No | Volume level (0-100) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"description": "Music control action",
"enum": [
"play",
"pause",
"playpause",
"next",
"previous",
"volume",
"mute",
"info"
],
"type": "string"
},
"mood": {
"description": "Mood-based playlist selection (focus, relax, energize, chill, work, or custom)",
"type": "string"
},
"uri": {
"description": "Spotify URI or search term",
"type": "string"
},
"volume": {
"description": "Volume level (0-100)",
"maximum": 100,
"minimum": 0,
"type": "number"
}
},
"required": [
"action"
],
"type": "object"
}