plex_help
Discover PlexMCP capabilities with built-in help, tool listings, deep tool info, code examples, and API documentation.
Instructions
Comprehensive help and discovery tool for PlexMCP.
PORTMANTEAU PATTERN RATIONALE: Consolidates 4 discovery operations into a single tool to facilitate autonomous exploration of available capabilities without requiring external documentation.
OPERATIONS:
help: General ecosystem overview and architectural guidance.
list_tools: Brief enumeration of all available tools and categories.
tool_info: Deep inspection of specific tool syntax and operation modes.
examples: Curated few-shot examples for complex media workflows.
api_docs: Return URLs for Swagger UI, ReDoc, and OpenAPI schema.
Return Format
{"success": bool, "operation": str, "tools": list | None, "help": str | None, "error": str | None}
Examples
await plex_help(operation="help") await plex_help(operation="list_tools") await plex_help(operation="tool_info", tool_name="plex_library") await plex_help(operation="api_docs")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Category filter for help or list_tools operations. | |
| operation | Yes | The help operation to perform. | |
| tool_name | No | Name of the tool to get info or examples for. |