Google Super
GOOGLESUPER_FIND_FOLDER
Tool to find a folder in Google Drive by its name and optionally a parent folder. Use when you need to locate a specific folder to perform further actions like creating files in it or listing its contents.
Remote googlesuper
Other tools also called GOOGLESUPER_FIND_FOLDER?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"starred": {
"type": "boolean",
"title": "Starred",
"default": null,
"nullable": true,
"description": "Set to true to search for folders that are starred, or false for those that are not."
},
"name_exact": {
"type": "string",
"title": "Name Exact",
"default": null,
"examples": [
"Project Alpha",
"Q1 Financials",
"Folder 8",
"Report 2024"
],
"nullable": true,
"description": "The exact name of the folder to search for as a string. This search is case-sensitive. Do not pass numbers - convert to string if needed."
},
"name_contains": {
"type": "string",
"title": "Name Contains",
"default": null,
"examples": [
"report",
"meeting notes",
"2024",
"project"
],
"nullable": true,
"description": "A substring to search for within folder names as a string. This search is case-insensitive."
},
"modified_after": {
"type": "string",
"title": "Modified After",
"default": null,
"examples": [
"2023-08-01T00:00:00Z"
],
"nullable": true,
"description": "Search for folders modified after a specific date and time. The timestamp must be in RFC 3339 format (e.g., '2023-01-15T10:00:00Z' or '2023-01-15T10:00:00.000Z')."
},
"parent_folder_id": {
"type": "string",
"title": "Parent Folder Id",
"default": null,
"examples": [
"1aBcDeFgHiJkLmNoPqRsTuVwXyZ",
"0B1234567890abcdefg"
],
"nullable": true,
"description": "The ID of the parent folder to search within. Only folders directly inside this parent folder will be returned. You can find parent folder IDs by first searching for the parent folder by name."
},
"name_not_contains": {
"type": "string",
"title": "Name Not Contains",
"default": null,
"examples": [
"archive",
"old",
"backup",
"temp"
],
"nullable": true,
"description": "A substring to exclude from folder names as a string. Folders with names containing this substring will not be returned. This search is case-insensitive."
},
"full_text_contains": {
"type": "string",
"title": "Full Text Contains",
"default": null,
"examples": [
"confidential project details",
"keyword"
],
"nullable": true,
"description": "A string to search for within the full text content of files within folders (if applicable and supported by Drive for the folder type or its contents). This search is case-insensitive."
},
"full_text_not_contains": {
"type": "string",
"title": "Full Text Not Contains",
"default": null,
"examples": [
"draft",
"internal use only"
],
"nullable": true,
"description": "A string to exclude from the full text content of files within folders. This search is case-insensitive."
}
}
}