search_music
Find music by searching for songs, artists, or albums using keywords. Streamline music discovery with customizable search filters and result limits.
Instructions
搜索音乐,支持按歌曲名、艺术家、专辑搜索
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | 返回结果数量限制 | |
query | Yes | 搜索关键词 | |
type | No | 搜索类型 | all |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "返回结果数量限制",
"type": "number"
},
"query": {
"description": "搜索关键词",
"type": "string"
},
"type": {
"default": "all",
"description": "搜索类型",
"enum": [
"song",
"artist",
"album",
"all"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}