get-pdf-page-text
Extract text content from a specific page in a PDF by providing the PDF ID and page number. Use this tool to retrieve targeted information without processing the entire document.
Instructions
Get the text content of a specific page in a PDF
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_number | Yes | Page number (0-based index) | |
pdf_id | Yes | ID of the PDF to get page text from |
Input Schema (JSON Schema)
{
"properties": {
"page_number": {
"description": "Page number (0-based index)",
"type": "integer"
},
"pdf_id": {
"description": "ID of the PDF to get page text from",
"type": "string"
}
},
"required": [
"pdf_id",
"page_number"
],
"type": "object"
}