Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
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.
| Field | Value |
|---|
| Name | list_external_files |
| Group | External Storage |
Playground
{
"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
{
"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#"
}