discover_music
Find music recommendations using natural language queries based on your preferences and library content. Search for specific genres, eras, or similar artists to discover new tracks.
Instructions
Natural language music discovery with smart recommendations based on your preferences and library
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural language query (e.g., 'songs from the 90s', 'rock bands I haven't heard', 'something like Modest Mouse') | |
| context | No | Additional context for the search (optional) | |
| limit | No | Maximum number of results to return (default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Additional context for the search (optional)",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of results to return (default: 10)",
"type": "number"
},
"query": {
"description": "Natural language query (e.g., 'songs from the 90s', 'rock bands I haven't heard', 'something like Modest Mouse')",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}