itunes_play_song
Play a specific song in Apple Music by matching the exact song name. Returns a confirmation message upon successful playback. Part of the MCP-AppleMusic server for macOS control.
Instructions
Play the first track whose name exactly matches the given song name. Returns a confirmation message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
song | Yes |
Input Schema (JSON Schema)
{
"properties": {
"song": {
"title": "Song",
"type": "string"
}
},
"required": [
"song"
],
"title": "itunes_play_songArguments",
"type": "object"
}