get_song_info
Retrieve detailed information about a specific song using its unique song ID within the Claude Music MCP server. Supports music management by accessing song metadata for seamless playlist creation and recommendations.
Instructions
获取歌曲详细信息
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| songId | Yes | 歌曲ID |
Input Schema (JSON Schema)
{
"properties": {
"songId": {
"description": "歌曲ID",
"type": "string"
}
},
"required": [
"songId"
],
"type": "object"
}