Google Docs
GOOGLEDOCS_SEARCH_DOCUMENTS
Search for Google Documents using various filters including name, content, date ranges, and more.
Remote googledocs
Other tools also called GOOGLEDOCS_SEARCH_DOCUMENTS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"title": "Query",
"default": null,
"examples": [
"name contains 'report'",
"fullText contains 'important'",
"name contains 'project' and fullText contains 'status'"
],
"nullable": true,
"description": "Search query to filter documents. Can search by name (name contains 'report'), full text content (fullText contains 'important'), or use complex queries with operators like 'and', 'or', 'not'. Leave empty to get all documents."
},
"order_by": {
"type": "string",
"title": "Order By",
"default": "modifiedTime desc",
"examples": [
"modifiedTime desc",
"name",
"createdTime desc",
"viewedByMeTime desc"
],
"nullable": true,
"description": "Order results by field. Common options: 'modifiedTime desc', 'modifiedTime asc', 'name', 'createdTime desc'"
},
"max_results": {
"type": "integer",
"title": "Max Results",
"default": 10,
"maximum": 1000,
"minimum": 1,
"nullable": true,
"description": "Maximum number of documents to return (1-1000). Defaults to 10."
},
"starred_only": {
"type": "boolean",
"title": "Starred Only",
"default": false,
"nullable": true,
"description": "Whether to return only starred documents. Defaults to False."
},
"created_after": {
"type": "string",
"title": "Created After",
"default": null,
"examples": [
"2024-01-01T00:00:00Z",
"2024-12-01T12:00:00-08:00"
],
"nullable": true,
"description": "Return documents created after this date. Use RFC 3339 format like '2024-01-01T00:00:00Z'."
},
"modified_after": {
"type": "string",
"title": "Modified After",
"default": null,
"examples": [
"2024-01-01T00:00:00Z",
"2024-12-01T12:00:00-08:00"
],
"nullable": true,
"description": "Return documents modified after this date. Use RFC 3339 format like '2024-01-01T00:00:00Z'."
},
"shared_with_me": {
"type": "boolean",
"title": "Shared With Me",
"default": false,
"nullable": true,
"description": "Whether to return only documents shared with the current user. Defaults to False."
},
"include_trashed": {
"type": "boolean",
"title": "Include Trashed",
"default": false,
"nullable": true,
"description": "Whether to include documents in trash. Defaults to False."
}
}
}