pdf_discovery
Search and list PDF documents quickly by query, source, and type without full processing. Streamline discovery of academic, reports, manuals, and more.
Instructions
Discover PDF documents without full processing - fast PDF search and listing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
documentType | No | Type of documents to search for | |
maxResults | No | Maximum number of results to return (default: 20) | |
query | Yes | Search query for PDF document discovery | |
sources | No | Sources to search (arxiv, pubmed, web, all) |
Input Schema (JSON Schema)
{
"properties": {
"documentType": {
"description": "Type of documents to search for",
"enum": [
"academic",
"report",
"manual",
"any"
],
"type": "string"
},
"maxResults": {
"description": "Maximum number of results to return (default: 20)",
"type": "number"
},
"query": {
"description": "Search query for PDF document discovery",
"type": "string"
},
"sources": {
"description": "Sources to search (arxiv, pubmed, web, all)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"query"
],
"type": "object"
}