search_music
Retrieve music tracks matching a keyword using the MCP QQ Music Test Server. Specify pagination and result limits to find and access song information efficiently.
Instructions
Search for music tracks
Args: keyword: Search keyword or phrase page: Page number for pagination (default: 1) num: Maximum number of results to return (default: 20)
Returns: List of music tracks matching the search criteria
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | ||
num | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"title": "Keyword",
"type": "string"
},
"num": {
"default": 20,
"title": "Num",
"type": "integer"
},
"page": {
"default": 1,
"title": "Page",
"type": "integer"
}
},
"required": [
"keyword"
],
"title": "search_musicArguments",
"type": "object"
}