discover_pdfs
Scan directories to find PDF files recursively, enabling systematic document organization and processing workflows.
Instructions
Recursively scan directory trees to locate all PDF files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directory_path | Yes | Path to directory to scan for PDF files | |
recursive | No | Search subdirectories recursively |
Input Schema (JSON Schema)
{
"properties": {
"directory_path": {
"description": "Path to directory to scan for PDF files",
"type": "string"
},
"recursive": {
"default": true,
"description": "Search subdirectories recursively",
"type": "boolean"
}
},
"required": [
"directory_path"
],
"type": "object"
}