open-pdf
Access and open PDF files directly by specifying the file path, enabling quick viewing and interaction with documents using the mcp-pdf-reader server.
Instructions
Open a PDF file
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| path | Yes | Path to the PDF file | 
Input Schema (JSON Schema)
{
  "properties": {
    "path": {
      "description": "Path to the PDF file",
      "type": "string"
    }
  },
  "required": [
    "path"
  ],
  "type": "object"
}