get_watch_stats
Retrieve detailed watch statistics for your Plex Media Server, including plays, duration, users, libraries, and platforms, over a customizable time range for comprehensive viewing insights.
Instructions
Get comprehensive watch statistics (Tautulli-style analytics)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
statType | No | Type of statistics to retrieve | plays |
timeRange | No | Time range in days (default: 30) |
Input Schema (JSON Schema)
{
"properties": {
"statType": {
"default": "plays",
"description": "Type of statistics to retrieve",
"enum": [
"plays",
"duration",
"users",
"libraries",
"platforms"
],
"type": "string"
},
"timeRange": {
"default": 30,
"description": "Time range in days (default: 30)",
"type": "number"
}
},
"type": "object"
}