Inspect PDF Digital Signatures
inspect_signaturesExamine digital signature fields in a PDF document. Get total signature count, signed/unsigned breakdown, and details per field including signer name, reason, and signing time.
Instructions
Examine digital signature fields in a PDF document.
Args:
file_path (string): Absolute path to a local PDF file
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Total signature field count, signed/unsigned breakdown, and details for each field (signer name, reason, location, signing time, filter/subFilter).
Note: This tool inspects signature field structure only. Cryptographic signature verification is not performed.
Examples:
Check if a PDF has been digitally signed
Inspect signer information and signing dates
Verify signature field structure
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to a local PDF file (e.g., "/path/to/document.pdf") | |
| response_format | No | Output format: "markdown" for human-readable, "json" for structured data | markdown |