get_listening_stats
Analyze listening statistics and receive music recommendations based on play history and listening patterns from your Plex music library.
Instructions
Get detailed listening statistics and music recommendations based on play history and patterns
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account_id | No | Specific account/user ID to analyze (optional, defaults to all users) | |
| time_period | No | Time period to analyze (default: month) | month |
| include_recommendations | No | Include music recommendations based on listening patterns (default: true) | |
| music_library_id | No | Specific music library ID to analyze (optional, auto-detects music libraries) |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "Specific account/user ID to analyze (optional, defaults to all users)",
"type": "string"
},
"include_recommendations": {
"default": true,
"description": "Include music recommendations based on listening patterns (default: true)",
"type": "boolean"
},
"music_library_id": {
"description": "Specific music library ID to analyze (optional, auto-detects music libraries)",
"type": "string"
},
"time_period": {
"default": "month",
"description": "Time period to analyze (default: month)",
"enum": [
"week",
"month",
"quarter",
"year",
"all"
],
"type": "string"
}
},
"required": [],
"type": "object"
}