add_to_playlist
Add a song to a specific playlist by providing the playlist ID and song ID. Simplifies music management within Claude Music MCP's ecosystem.
Instructions
将歌曲添加到播放列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playlistId | Yes | 播放列表ID | |
songId | Yes | 歌曲ID |
Input Schema (JSON Schema)
{
"properties": {
"playlistId": {
"description": "播放列表ID",
"type": "string"
},
"songId": {
"description": "歌曲ID",
"type": "string"
}
},
"required": [
"playlistId",
"songId"
],
"type": "object"
}