create_playlist
Generate and customize Spotify playlists by specifying a name, track URIs, optional description, and privacy settings. Integrates with Spotify's API for streamlined playlist creation.
Instructions
Create a new playlist on Spotify and add tracks to it.
Args:
name: Name of the playlist
track_uris: List of Spotify track URIs to add to the playlist
description: Optional description for the playlist
public: Whether the playlist should be public (default: False)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes | ||
public | No | ||
track_uris | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"public": {
"default": false,
"title": "Public",
"type": "boolean"
},
"track_uris": {
"items": {
"type": "string"
},
"title": "Track Uris",
"type": "array"
}
},
"required": [
"name",
"track_uris"
],
"title": "create_playlistArguments",
"type": "object"
}