Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

List Google shared drives

List shared drives visible to the connected principal for knowledge-source selection.

Agent markdown

drive.drives.list · Google Workspace · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • https://www.googleapis.com/auth/drive.readonly

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
page_sizeintegerNominimum 1; maximum 100
page_tokenstringNominLength 1; maxLength 512
qstringNomaxLength 1024

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
drivesarray<object>YesmaxItems 100
drives[]objectYesadditionalProperties false
drives[].idstringYesminLength 1; maxLength 256
drives[].namestringYesmaxLength 512
drives[].created_atstringNomaxLength 64
drives[].hiddenbooleanNo
next_page_tokenstringNomaxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "page_token": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "q": {
      "type": "string",
      "maxLength": 1024
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "drives": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 256
          },
          "name": {
            "type": "string",
            "maxLength": 512
          },
          "created_at": {
            "type": "string",
            "maxLength": 64
          },
          "hidden": {
            "type": "boolean"
          }
        },
        "required": [
          "id",
          "name"
        ]
      },
      "maxItems": 100
    },
    "next_page_token": {
      "type": "string",
      "maxLength": 512
    }
  },
  "required": [
    "drives"
  ]
}