add_to_playlist
Add media items to an existing Plex playlist by specifying the playlist ID and item keys to expand your curated collections.
Instructions
Add items to an existing playlist
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| playlist_id | Yes | The playlist ID (ratingKey) to add items to | |
| item_keys | Yes | Array of item keys (ratingKey) to add to the playlist |
Input Schema (JSON Schema)
{
"properties": {
"item_keys": {
"description": "Array of item keys (ratingKey) to add to the playlist",
"items": {
"type": "string"
},
"type": "array"
},
"playlist_id": {
"description": "The playlist ID (ratingKey) to add items to",
"type": "string"
}
},
"required": [
"playlist_id",
"item_keys"
],
"type": "object"
}