get_tracks_by_key
Retrieve tracks filtered by a specific musical key from the rekordbox DJ database. Input the key (e.g., "5A", "12B") to receive a list of matching tracks for DJing or music organization.
Instructions
Get all tracks in a specific musical key.
Args: key: Musical key (e.g., "5A", "12B")
Returns: List of tracks in the specified key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"title": "Key",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}