pdf_help
Lists available PDF tools or returns detailed usage help for a specific tool, so you can discover and call the right function in pdf-mcp.
Instructions
List available tools and get usage help for pdf-mcp.
Return Format
A dict with keys:
success: bool
message: str - human-readable summary
data: list of tools with name, description, and input schema, or detailed help for a single tool when tool_name is provided.
Examples
await pdf_help() {"success": true, "message": "8 tools available.", "data": [{"name": "pdf_extract", ...}]}
await pdf_help(tool_name="pdf_extract") {"success": true, "message": "Help for pdf_extract.", "data": {...}}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tool_name | No | Name of a tool to get detailed help for. Lists all tools if omitted. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | No | Human-readable summary | |
| success | No | Whether the operation succeeded |