Skip to main content
Browse files and folders in a connected external storage provider (OneDrive, SharePoint, Google Drive, Dropbox). Returns a list of files with names, types, sizes, and modification dates.

Tool details

FieldValue
Namelist_external_files
GroupExternal Storage

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "provider": {
      "type": "string",
      "description": "Cloud provider name (e.g., \"onedrive\", \"sharepoint\", \"drive\", \"dropbox\")"
    },
    "path": {
      "type": "string",
      "description": "Folder path to list (omit for root)"
    },
    "cursor": {
      "type": "string",
      "description": "Pagination cursor from previous response"
    }
  },
  "required": [
    "project_reference",
    "provider"
  ],
  "additionalProperties": false,
  "description": "Input schema for the list_external_files tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "Agent-readable status message or rendered content for the external storage operation."
    }
  },
  "required": [
    "message"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the list_external_files tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}