Skip to main content
Move or rename a file in a connected external storage provider. Can move to a different folder, rename, or both.

Tool details

FieldValue
Namemove_external_file
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"
    },
    "file_id": {
      "type": "string",
      "description": "File ID to move/rename"
    },
    "new_parent_id": {
      "type": "string",
      "description": "Target folder ID"
    },
    "new_name": {
      "type": "string",
      "description": "New file name (omit to keep current name)"
    }
  },
  "required": [
    "project_reference",
    "provider",
    "file_id",
    "new_parent_id"
  ],
  "additionalProperties": false,
  "description": "Input schema for the move_external_file 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 move_external_file tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}