create_playlist
Generate a personalized playlist for a specific user by specifying a user ID and playlist name. Integrated with Spotify through the Multi-MCPs server, this tool simplifies playlist creation by unifying access to multiple APIs.
Instructions
Create a new playlist for a user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"name"
],
"type": "object"
}