mcp-pdf-tools

The Unlicense
13

search-pdfs

Search for PDF files in a directory with optional pattern matching

Input Schema

NameRequiredDescriptionDefault
base_pathYesBase directory to search in
patternNoPattern to match against filenames (e.g., 'report*.pdf')
recursiveNoWhether to search in subdirectories

Input Schema (JSON Schema)

{ "properties": { "base_path": { "description": "Base directory to search in", "type": "string" }, "pattern": { "description": "Pattern to match against filenames (e.g., 'report*.pdf')", "type": "string" }, "recursive": { "default": true, "description": "Whether to search in subdirectories", "type": "boolean" } }, "required": [ "base_path" ], "type": "object" }