itunes_search
Search Apple Music library to find tracks matching a specified query. Retrieve results as a list formatted as "Track Name - Artist" for easy identification and selection.
Instructions
Search the Music library for tracks whose names contain the given query. Returns a list of tracks formatted as "Track Name - Artist".
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "itunes_searchArguments",
"type": "object"
}