Google Drive

gd_create_folder

Create a new folder in Google Drive. Optionally specify a parent folder to create it as a subfolder.

Remote node2flow/google-drive

Other tools also called gd_create_folder? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Folder name"
    },
    "parents": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Parent folder ID(s). If empty, created in root."
    },
    "description": {
      "type": "string",
      "description": "Folder description"
    }
  }
}