drive_search_files
Locate specific files in Google Drive by entering a search query and defining the number of results to return, streamlining file management and retrieval.
Instructions
Search for files in Google Drive
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_size | No | Number of results to return | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"page_size": {
"default": 10,
"description": "Number of results to return",
"type": "integer"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}