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.
Search for files by name in a connected external storage provider. Returns matching files across the entire storage or within a specific folder.
| Field | Value |
|---|
| Name | search_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"
},
"query": {
"type": "string",
"description": "Search query (file name or keyword)"
},
"folder_id": {
"type": "string",
"description": "Optional folder ID to scope the search"
}
},
"required": [
"project_reference",
"provider",
"query"
],
"additionalProperties": false,
"description": "Input schema for the search_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 search_external_files tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}