itunes_create_playlist
Create and populate a new Apple Music playlist by specifying a name and listing exact track names. Returns confirmation with the number of tracks added.
Instructions
Create a new playlist with the given name and add tracks to it. 'songs' should be a comma-separated list of exact track names. Returns a confirmation message including the number of tracks added.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
songs | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"songs": {
"title": "Songs",
"type": "string"
}
},
"required": [
"name",
"songs"
],
"title": "itunes_create_playlistArguments",
"type": "object"
}