get_playlist_items
Retrieve items from a Plex playlist using the playlist key. This tool outputs a formatted list of playlist items or an error message, simplifying media library management.
Instructions
Get the items in a specific playlist.
Parameters: playlist_key: The key of the playlist to retrieve items from.
Returns: A formatted string of playlist items or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playlist_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"playlist_key": {
"title": "Playlist Key",
"type": "string"
}
},
"required": [
"playlist_key"
],
"title": "get_playlist_itemsArguments",
"type": "object"
}