Google Drive

GOOGLEDRIVE_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 googledrive

Other tools also called GOOGLEDRIVE_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"
      ],
      "nullable": true,
      "description": "The exact name of the folder to search for. This search is case-sensitive."
    },
    "name_contains": {
      "type": "string",
      "title": "Name Contains",
      "default": null,
      "examples": [
        "report",
        "meeting notes"
      ],
      "nullable": true,
      "description": "A substring to search for within folder names. 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')."
    },
    "name_not_contains": {
      "type": "string",
      "title": "Name Not Contains",
      "default": null,
      "examples": [
        "archive",
        "old"
      ],
      "nullable": true,
      "description": "A substring to exclude from folder names. 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."
    }
  }
}