plex_integration
Manage third-party integrations for Plex Media Server. Fetch regional recommendations, European content, and anime season info by configuring and syncing external metadata providers.
Instructions
Comprehensive third-party integration operations for Plex Media Server.
PORTMANTEAU PATTERN RATIONALE: Consolidates 6 external API integrations into a single tool to provide unified access to regional recommendations and niche metadata providers.
Return Format
{"success": bool, "operation": str, "data": list|dict, "count": int|None, "error": str|None}
Examples
await plex_integration(operation="list_integrations") await plex_integration(operation="vienna_recommendations", content_type="movie", limit=5) await plex_integration(operation="anime_season_info", year=2024, season="spring") await plex_integration(operation="configure", integration_name="vienna", config={"api_key": "..."})
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Year for seasonal queries. | |
| limit | No | Maximum number of results to return. | |
| config | No | Configuration dictionary for the integration. | |
| season | No | Season filter for anime queries. | |
| country | No | Country code for content filtering. | |
| operation | Yes | The integration operation to perform. | |
| content_type | No | Content type filter (e.g., 'movie', 'show'). | |
| include_european | No | Include European content in results. | |
| integration_name | No | Name of the integration target. |