add_to_playlist
Enable movie playlist management by adding a specific movie to an existing playlist using the Plex MCP Server API. Specify playlist and movie keys to execute.
Instructions
Add a movie to an existing playlist.
Parameters: playlist_key: The key of the playlist. movie_key: The key of the movie to add.
Returns: A success message if the movie is added, or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
movie_key | Yes | ||
playlist_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"movie_key": {
"title": "Movie Key",
"type": "string"
},
"playlist_key": {
"title": "Playlist Key",
"type": "string"
}
},
"required": [
"playlist_key",
"movie_key"
],
"title": "add_to_playlistArguments",
"type": "object"
}