create_playlist
Create a new Spotify playlist by specifying a name, optional description, and privacy setting. Use this tool to organize and manage your music collection directly on Spotify.
Instructions
Create a new Spotify playlist.
Args:
name: Playlist name
description: Playlist description
public: Whether playlist is public
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes | ||
public | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"public": {
"default": true,
"title": "Public",
"type": "boolean"
}
},
"required": [
"name"
],
"title": "create_playlistArguments",
"type": "object"
}