create_playlist
Build personalized music playlists by specifying a name and optional description. Streamline music organization and enhance listening experiences with this playlist creation tool.
Instructions
创建新的播放列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | 播放列表描述 | |
name | Yes | 播放列表名称 |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "播放列表描述",
"type": "string"
},
"name": {
"description": "播放列表名称",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}