For the complete documentation index, see llms.txt. This page is also available as Markdown.

Storage

Back to the MCP tool reference.

list_storage

List a bounded storage directory; the response marks truncation.

Operation type: Read-only

Annotations: read-only true, destructive false, idempotent true, open-world true

Input schema:

{
  "properties": {
    "cluster": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Cluster"
    },
    "limit": {
      "default": 50,
      "title": "Limit",
      "type": "integer"
    },
    "org": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Org"
    },
    "path": {
      "default": "",
      "title": "Path",
      "type": "string"
    },
    "project": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Project"
    }
  },
  "title": "list_storageArguments",
  "type": "object"
}

Output schema:

stat_storage

Return metadata for one exact storage path.

Operation type: Read-only

Annotations: read-only true, destructive false, idempotent true, open-world true

Input schema:

Output schema:

read_text

Read a UTF-8 text prefix under a strict byte cap.

Operation type: Read-only

Annotations: read-only true, destructive false, idempotent true, open-world true

Input schema:

Output schema:

write_text

Create or update a small UTF-8 object under server policy.

Operation type: Write

Annotations: read-only false, destructive false, idempotent false, open-world true

Input schema:

Output schema:

upload_storage_file

Upload one local file to an exact storage path. File bytes are never serialized through MCP. Existing remote files may be overwritten only under full or exact ledger-owned managed policy. An optional positive timeout can bound the transfer when requested by the caller.

Operation type: Write

Annotations: read-only false, destructive false, idempotent false, open-world true

Input schema:

Output schema:

download_storage_file

Download one storage file to a new confined local file. Existing local files are never overwritten and file bytes are never serialized through MCP. An optional positive timeout can bound the transfer when requested by the caller.

Operation type: Write

Annotations: read-only false, destructive false, idempotent false, open-world true

Input schema:

Output schema:

make_directory

Create an exact directory under server policy.

Operation type: Write

Annotations: read-only false, destructive false, idempotent false, open-world true

Input schema:

Output schema:

delete_storage_path

Delete one exact path; recursive deletion removes its entire subtree.

Operation type: Destructive write

Annotations: read-only false, destructive true, idempotent true, open-world true

Input schema:

Output schema:

Last updated

Was this helpful?