get_most_played_tracks
Retrieve a list of the most played tracks from a rekordbox DJ library, customizable by a specified limit for focused analysis or playlist creation.
Instructions
Get the most played tracks in the library.
Args: limit: Maximum number of tracks to return
Returns: List of most played tracks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
}
},
"type": "object"
}