create-playlist
Generate a personalized Spotify playlist by specifying a name, optional description, and public or private visibility. Save and organize your favorite tracks with ease.
Instructions
Create a new playlist for the current user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the playlist (optional) | |
name | Yes | Name of the playlist | |
public | No | Whether the playlist should be public (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the playlist (optional)",
"type": "string"
},
"name": {
"description": "Name of the playlist",
"type": "string"
},
"public": {
"description": "Whether the playlist should be public (default: false)",
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
}