pdf_read
Extract readable text from any PDF document to access its contents directly.
Instructions
Read text content from a PDF file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:62-62 (registration)The tool 'pdf_read' is registered as part of the TOOLS array on line 62.
["pdf_read", "Read text content from a PDF file"], - server.js:106-109 (registration)The tool is registered via the generic loop using server.tool(). It is a stub - the real handler is in a native binary.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], }));