Skip to main content
Search for files by name in a connected external storage provider. Returns matching files across the entire storage or within a specific folder.

Tool details

FieldValue
Namesearch_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"
    },
    "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

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#"
}