search_history_sessions
Filter and retrieve DJ history sessions by name, year, month, or track count to analyze and organize performance data efficiently.
Instructions
Search DJ history sessions with various filters.
Args: query: Search query for session names year: Filter by year (e.g., "2025") month: Filter by month (e.g., "08" for August) min_tracks: Minimum number of tracks in session limit: Maximum number of results
Returns: List of matching history sessions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
min_tracks | No | ||
month | No | ||
query | No | ||
year | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"min_tracks": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Min Tracks"
},
"month": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Month"
},
"query": {
"default": "",
"title": "Query",
"type": "string"
},
"year": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Year"
}
},
"type": "object"
}