{
  "info": {
    "name": "Google Drive — mcp.ai",
    "description": "REST API for the Google Drive MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/googledrive",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "googledrive_add_file_sharing_preference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/file/sharing/preference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "file",
            "sharing",
            "preference"
          ]
        },
        "description": "Modifies sharing permissions for an existing google drive file, granting a specified role to a user, group, domain, or 'anyone'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"type\": \"\",\n  \"domain\": \"\",\n  \"file_id\": \"\",\n  \"email_address\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_copy_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/copy/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "copy",
            "file"
          ]
        },
        "description": "Duplicates an existing file in google drive, identified by its `file id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"new_title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_create_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "comment"
          ]
        },
        "description": "Tool to create a comment on a file. use when you need to add a new comment to a specific file in google drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"anchor\": \"\",\n  \"content\": \"\",\n  \"file_id\": \"\",\n  \"quoted_file_content_value\": \"\",\n  \"quoted_file_content_mime_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_create_drive",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/drive",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "drive"
          ]
        },
        "description": "Tool to create a new shared drive. use when you need to programmatically create a new shared drive for collaboration or storage.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"hidden\": false,\n  \"themeId\": \"\",\n  \"colorRgb\": \"\",\n  \"requestId\": \"\",\n  \"backgroundImageFile\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_create_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "file"
          ]
        },
        "description": "Creates a new file or folder with metadata. use to create empty files or folders, or files with content by providing it in the request body (though this action primarily focuses on metadata creation).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"parents\": \"\",\n  \"starred\": false,\n  \"mimeType\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_create_file_from_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/file/from/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "file",
            "from",
            "text"
          ]
        },
        "description": "Creates a new file in google drive from provided text content (up to 10mb), supporting various formats including automatic conversion to google workspace types.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_name\": \"\",\n  \"mime_type\": \"\",\n  \"parent_id\": \"\",\n  \"text_content\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_create_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folder"
          ]
        },
        "description": "Creates a new folder in google drive, optionally within a parent folder specified by its id or name; if a parent name is provided but not found, the action will fail.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"parent_id\": \"\",\n  \"folder_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_create_reply",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/reply",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "reply"
          ]
        },
        "description": "Tool to create a reply to a comment in google drive. use when you need to respond to an existing comment on a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action\": \"\",\n  \"fields\": \"\",\n  \"content\": \"\",\n  \"file_id\": \"\",\n  \"comment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_create_shortcut_to_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/shortcut/to/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "shortcut",
            "to",
            "file"
          ]
        },
        "description": "Tool to create a shortcut to a file or folder in google drive. use when you need to link to an existing drive item from another location without duplicating it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"target_id\": \"\",\n  \"includeLabels\": \"\",\n  \"target_mime_type\": \"\",\n  \"supportsAllDrives\": false,\n  \"keepRevisionForever\": false,\n  \"ignoreDefaultVisibility\": false,\n  \"includePermissionsForView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_delete_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "comment"
          ]
        },
        "description": "Deletes a comment from a file. use when you need to remove a specific comment from a google drive file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"comment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_delete_drive",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/drive",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "drive"
          ]
        },
        "description": "Tool to permanently delete a shared drive. use when you need to remove a shared drive and its contents (if specified).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"driveId\": \"\",\n  \"allowItemDeletion\": false,\n  \"useDomainAdminAccess\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_delete_permission",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/permission",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "permission"
          ]
        },
        "description": "Deletes a permission from a file by permission id. use when you need to revoke access for a specific user or group from a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"permission_id\": \"\",\n  \"supportsAllDrives\": false,\n  \"useDomainAdminAccess\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_delete_reply",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/reply",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "reply"
          ]
        },
        "description": "Tool to delete a specific reply by reply id. use when you need to remove a reply from a comment on a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"reply_id\": \"\",\n  \"comment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_download_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "file"
          ]
        },
        "description": "Downloads a file from google drive by its id. for google workspace documents (docs, sheets, slides), optionally exports to a specified `mime type`. for other file types, downloads in their native form",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"mime_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_edit_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "file"
          ]
        },
        "description": "Updates an existing google drive file by overwriting its entire content with new text (max 10mb).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"file_id\": \"\",\n  \"mime_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_empty_trash",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/empty/trash",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "empty",
            "trash"
          ]
        },
        "description": "Tool to permanently delete all of the user's trashed files. use when you want to empty the trash in google drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"driveId\": \"\",\n  \"enforceSingleParent\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_files_modify_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/files/modify/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "files",
            "modify",
            "labels"
          ]
        },
        "description": "Modifies the set of labels applied to a file. returns a list of the labels that were added or modified. use when you need to programmatically change labels on a google drive file, such as adding, upda",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"kind\": \"\",\n  \"file_id\": \"\",\n  \"label_modifications\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_find_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "file"
          ]
        },
        "description": "Tool to list or search for files and folders in google drive. use when you need to find specific files based on query criteria or list contents of a drive/folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"fields\": \"\",\n  \"spaces\": \"\",\n  \"corpora\": \"\",\n  \"driveId\": \"\",\n  \"orderBy\": \"\",\n  \"pageSize\": 0,\n  \"pageToken\": \"\",\n  \"supportsAllDrives\": false,\n  \"includeItemsFromAllDrives\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_find_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "folder"
          ]
        },
        "description": "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 cont",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"starred\": false,\n  \"name_exact\": \"\",\n  \"name_contains\": \"\",\n  \"modified_after\": \"\",\n  \"name_not_contains\": \"\",\n  \"full_text_contains\": \"\",\n  \"full_text_not_contains\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_generate_ids",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/ids",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "ids"
          ]
        },
        "description": "Generates a set of file ids which can be provided in create or copy requests. use when you need to pre-allocate ids for new files or copies.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"count\": 0,\n  \"space\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_get_about",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/about",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "about"
          ]
        },
        "description": "Tool to retrieve information about the user, the user's drive, and system capabilities. use when you need to check storage quotas, user details, or supported import/export formats.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_get_changes_start_page_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/changes/start/page/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "changes",
            "start",
            "page",
            "token"
          ]
        },
        "description": "Tool to get the starting pagetoken for listing future changes in google drive. use this when you need to track changes to files and folders.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"driveId\": \"\",\n  \"teamDriveId\": \"\",\n  \"supportsAllDrives\": false,\n  \"supportsTeamDrives\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_get_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "comment"
          ]
        },
        "description": "Tool to get a comment by id. use when you need to retrieve a specific comment from a google drive file and have both the file id and comment id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fileId\": \"\",\n  \"commentId\": \"\",\n  \"includeDeleted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_get_drive",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/drive",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "drive"
          ]
        },
        "description": "Tool to get a shared drive by id. use when you need to retrieve information about a specific shared drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"drive_id\": \"\",\n  \"use_domain_admin_access\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_get_file_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/file/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "file",
            "metadata"
          ]
        },
        "description": "Tool to get a file's metadata by id. use when you need to retrieve the metadata for a specific file in google drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fileId\": \"\",\n  \"includeLabels\": \"\",\n  \"acknowledgeAbuse\": false,\n  \"supportsAllDrives\": false,\n  \"includePermissionsForView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_get_permission",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/permission",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "permission"
          ]
        },
        "description": "Gets a permission by id. use this tool to retrieve a specific permission for a file or shared drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"permission_id\": \"\",\n  \"supports_all_drives\": false,\n  \"use_domain_admin_access\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_get_reply",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/reply",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "reply"
          ]
        },
        "description": "Tool to get a specific reply to a comment on a file. use when you need to retrieve the details of a particular reply.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fileId\": \"\",\n  \"replyId\": \"\",\n  \"commentId\": \"\",\n  \"includeDeleted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_get_revision",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/revision",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "revision"
          ]
        },
        "description": "Tool to get a specific revision's metadata by revision id. use when you need to retrieve information about a particular version of a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"revision_id\": \"\",\n  \"acknowledge_abuse\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_google_drive_delete_folder_or_file_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/google/drive/delete/folder/or/file/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "google",
            "drive",
            "delete",
            "folder",
            "or",
            "file",
            "action"
          ]
        },
        "description": "Tool to delete a file or folder in google drive. use when you need to permanently remove a specific file or folder using its id. note: this action is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fileId\": \"\",\n  \"supportsAllDrives\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_hide_drive",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/hide/drive",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "hide",
            "drive"
          ]
        },
        "description": "Tool to hide a shared drive from the default view. use when you want to remove a shared drive from the user's main google drive interface without deleting it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"drive_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_list_changes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/changes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "changes"
          ]
        },
        "description": "Tool to list the changes for a user or shared drive. use when you need to track modifications to files and folders, such as creations, deletions, or permission changes. this action requires a `pagetok",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"spaces\": \"\",\n  \"driveId\": \"\",\n  \"pageSize\": 0,\n  \"pageToken\": \"\",\n  \"includeLabels\": \"\",\n  \"includeRemoved\": false,\n  \"restrictToMyDrive\": false,\n  \"supportsAllDrives\": false,\n  \"includeCorpusRemovals\": false,\n  \"includeItemsFromAllDrives\": false,\n  \"includePermissionsForView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_list_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "comments"
          ]
        },
        "description": "Tool to list all comments for a file in google drive. use when you need to retrieve comments associated with a specific file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"fileId\": \"\",\n  \"pageSize\": 0,\n  \"pageToken\": \"\",\n  \"includeDeleted\": false,\n  \"startModifiedTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_list_file_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/file/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "file",
            "labels"
          ]
        },
        "description": "Tool to list the labels on a file. use when you need to retrieve all labels associated with a specific file in google drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"page_token\": \"\",\n  \"max_results\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_list_files",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/files",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "files"
          ]
        },
        "description": "Tool to list a user's files and folders in google drive. use this to search or browse for files and folders based on various criteria.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"fields\": \"\",\n  \"spaces\": \"\",\n  \"corpora\": \"\",\n  \"driveId\": \"\",\n  \"orderBy\": \"\",\n  \"folderId\": \"\",\n  \"pageSize\": 0,\n  \"pageToken\": \"\",\n  \"includeLabels\": \"\",\n  \"supportsAllDrives\": false,\n  \"includeItemsFromAllDrives\": false,\n  \"includePermissionsForView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_list_permissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/permissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "permissions"
          ]
        },
        "description": "Tool to list a file's permissions. use when you need to retrieve all permissions associated with a specific file or shared drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fileId\": \"\",\n  \"pageSize\": 0,\n  \"pageToken\": \"\",\n  \"supportsAllDrives\": false,\n  \"useDomainAdminAccess\": false,\n  \"includePermissionsForView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_list_replies_to_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/replies/to/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "replies",
            "to",
            "comment"
          ]
        },
        "description": "Tool to list replies to a comment in google drive. use this when you need to retrieve all replies associated with a specific comment on a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"file_id\": \"\",\n  \"page_size\": 0,\n  \"comment_id\": \"\",\n  \"page_token\": \"\",\n  \"include_deleted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_list_revisions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/revisions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "revisions"
          ]
        },
        "description": "Tool to list a file's revisions. use when you need to retrieve the revision history of a specific file in google drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fileId\": \"\",\n  \"pageSize\": 0,\n  \"pageToken\": \"\",\n  \"supportsAllDrives\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_list_shared_drives",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/shared/drives",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "shared",
            "drives"
          ]
        },
        "description": "Tool to list the user's shared drives. use when you need to get a list of all shared drives accessible to the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"pageSize\": 0,\n  \"pageToken\": \"\",\n  \"useDomainAdminAccess\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_move_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "file"
          ]
        },
        "description": "Tool to move a file from one folder to another in google drive. use when you need to reorganize files by changing their parent folder(s).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"add_parents\": \"\",\n  \"ocr_language\": \"\",\n  \"include_labels\": \"\",\n  \"remove_parents\": \"\",\n  \"supports_all_drives\": false,\n  \"keep_revision_forever\": false,\n  \"include_permissions_for_view\": \"\",\n  \"use_content_as_indexable_text\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_parse_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/parse/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "parse",
            "file"
          ]
        },
        "description": "Deprecated: exports google workspace files (max 10mb) to a specified format using `mime type`, or downloads other file types; use `googledrive download file` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"mime_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_stop_watch_channel",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/watch/channel",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "watch",
            "channel"
          ]
        },
        "description": "Tool to stop watching resources through a specified channel. use this when you want to stop receiving notifications for a previously established watch.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"kind\": \"\",\n  \"token\": \"\",\n  \"params\": {},\n  \"address\": \"\",\n  \"payload\": false,\n  \"expiration\": \"\",\n  \"resourceId\": \"\",\n  \"channelType\": \"\",\n  \"resourceUri\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_unhide_drive",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unhide/drive",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unhide",
            "drive"
          ]
        },
        "description": "Tool to unhide a shared drive. use when you need to restore a shared drive to the default view.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"driveId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_untrash_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/untrash/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "untrash",
            "file"
          ]
        },
        "description": "Tool to restore a file from the trash. use when you need to recover a deleted file. this action updates the file's metadata to set the 'trashed' property to false.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"supportsAllDrives\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_update_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "comment"
          ]
        },
        "description": "Tool to update an existing comment on a google drive file. use when you need to change the content or status (e.g., resolve) of a comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"content\": \"\",\n  \"file_id\": \"\",\n  \"resolved\": false,\n  \"comment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_update_drive",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/drive",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "drive"
          ]
        },
        "description": "Tool to update the metadata for a shared drive. use when you need to modify properties like the name, theme, background image, or restrictions of a shared drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"hidden\": false,\n  \"driveId\": \"\",\n  \"themeId\": \"\",\n  \"colorRgb\": \"\",\n  \"restrictions\": {},\n  \"backgroundImageFile\": {},\n  \"useDomainAdminAccess\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_update_file_put",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/file/put",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "file",
            "put"
          ]
        },
        "description": "Updates file metadata. uses patch semantics (partial update) as per google drive api v3. use this tool to modify attributes of an existing file like its name, description, or parent folders. note: thi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"file_id\": \"\",\n  \"starred\": false,\n  \"mime_type\": \"\",\n  \"add_parents\": \"\",\n  \"description\": \"\",\n  \"ocr_language\": \"\",\n  \"remove_parents\": \"\",\n  \"writers_can_share\": false,\n  \"supports_all_drives\": false,\n  \"keep_revision_forever\": false,\n  \"use_domain_admin_access\": false,\n  \"viewers_can_copy_content\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_update_file_revision_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/file/revision/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "file",
            "revision",
            "metadata"
          ]
        },
        "description": "Updates metadata of a file revision (e.g., keepforever, publish). use this tool to modify the metadata of a specific revision of a file in google drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"published\": false,\n  \"publishAuto\": false,\n  \"revision_id\": \"\",\n  \"keep_forever\": false,\n  \"publishedOutsideDomain\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_update_permission",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/permission",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "permission"
          ]
        },
        "description": "Tool to update a permission with patch semantics. use when you need to modify an existing permission for a file or shared drive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fileId\": \"\",\n  \"permission\": {},\n  \"permissionId\": \"\",\n  \"removeExpiration\": false,\n  \"supportsAllDrives\": false,\n  \"transferOwnership\": false,\n  \"useDomainAdminAccess\": false,\n  \"enforceExpansiveAccess\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_update_reply",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/reply",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "reply"
          ]
        },
        "description": "Tool to update a reply to a comment on a google drive file. use when you need to modify the content of an existing reply.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"content\": \"\",\n  \"file_id\": \"\",\n  \"reply_id\": \"\",\n  \"comment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_upload_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "file"
          ]
        },
        "description": "Uploads a file (max 5mb) to google drive, moving it to a specified folder if a valid folder id is provided, otherwise uploads to root.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_to_upload\": {},\n  \"folder_to_upload_to\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googledrive_watch_changes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/watch/changes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "watch",
            "changes"
          ]
        },
        "description": "Tool to subscribe to changes for a user or shared drive in google drive. use when you need to monitor a google drive for modifications and receive notifications at a specified webhook url.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"type\": \"\",\n  \"token\": \"\",\n  \"params\": {},\n  \"spaces\": \"\",\n  \"address\": \"\",\n  \"drive_id\": \"\",\n  \"page_size\": 0,\n  \"expiration\": 0,\n  \"page_token\": \"\",\n  \"include_labels\": \"\",\n  \"include_removed\": false,\n  \"supports_all_drives\": false,\n  \"restrict_to_my_drive\": false,\n  \"include_corpus_removals\": false,\n  \"include_permissions_for_view\": \"\",\n  \"include_items_from_all_drives\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}