browse_collection
Browse and organize content within specific Plex collections by sorting, filtering, and paginating through movies, TV shows, and music libraries.
Instructions
Browse content within a specific collection
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection_id | Yes | The collection ID (ratingKey) to browse | |
| sort | No | Sort order (default: titleSort) | titleSort |
| limit | No | Maximum number of results to return (default: 20) | |
| offset | No | Number of results to skip (for pagination, default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"description": "The collection ID (ratingKey) to browse",
"type": "string"
},
"limit": {
"default": 20,
"description": "Maximum number of results to return (default: 20)",
"type": "number"
},
"offset": {
"default": 0,
"description": "Number of results to skip (for pagination, default: 0)",
"type": "number"
},
"sort": {
"default": "titleSort",
"description": "Sort order (default: titleSort)",
"enum": [
"titleSort",
"addedAt",
"originallyAvailableAt",
"rating",
"viewCount",
"lastViewedAt"
],
"type": "string"
}
},
"required": [
"collection_id"
],
"type": "object"
}