getSongDetails
Retrieve comprehensive song metadata and attributes by providing the song's unique identifier. Integrates with StreamerSongList MCP Server for efficient song management in streaming platforms.
Instructions
Get detailed information about a specific song including metadata and attributes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
songId | Yes | The unique identifier of the song |
Input Schema (JSON Schema)
{
"properties": {
"songId": {
"description": "The unique identifier of the song",
"type": "string"
}
},
"required": [
"songId"
],
"type": "object"
}