create_playlist
Generate and manage playlists on Plex by specifying a name and including specific movies. This tool integrates with the Plex Media Server API for streamlined playlist creation and organization.
Instructions
Create a new playlist with specified movies.
Parameters: name: The desired name for the new playlist. movie_keys: A comma-separated string of movie keys to include.
Returns: A success message with playlist details or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
movie_keys | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"movie_keys": {
"title": "Movie Keys",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name",
"movie_keys"
],
"title": "create_playlistArguments",
"type": "object"
}