get_history_sessions
Retrieve DJ history sessions from rekordbox with metadata, allowing optional inclusion of folder entries and configurable session limits for precise queries.
Instructions
Get DJ history sessions from rekordbox.
Args: include_folders: Whether to include folder entries (years/months) limit: Maximum number of sessions to return
Returns: List of history sessions with metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_folders | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"include_folders": {
"default": false,
"title": "Include Folders",
"type": "boolean"
},
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
}
},
"type": "object"
}