extract_pdf_metadata
Access and retrieve metadata and document details from PDF files using a robust server. Input the file path to extract essential information efficiently.
Instructions
Extract metadata and document information from PDF files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to the PDF file to extract metadata from |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Path to the PDF file to extract metadata from",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}