extract_form_fields
Extract form fields and their properties from a PDF file using MCP PDF Forms. Retrieve a dictionary of field names and details for efficient PDF form data handling and analysis.
Instructions
Extract all form fields from a PDF
Args:
pdf_path: Path to the PDF file
Returns:
Dictionary of form field names and their properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pdf_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"pdf_path": {
"title": "Pdf Path",
"type": "string"
}
},
"required": [
"pdf_path"
],
"title": "extract_form_fieldsArguments",
"type": "object"
}