get_movie_details
Retrieve comprehensive details about a specific movie using its unique identifier, providing formatted information or error messages for integration with Plex Media Server.
Instructions
Get detailed information about a specific movie.
Parameters: movie_key: The key identifying the movie.
Returns: A formatted string with movie details or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
movie_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"movie_key": {
"title": "Movie Key",
"type": "string"
}
},
"required": [
"movie_key"
],
"title": "get_movie_detailsArguments",
"type": "object"
}