w3_can_store_ls
Lists stored CAR files (shards) within the current space using pagination and JSON output for advanced data management on MCP-IPFS servers.
Instructions
Lists stored CAR files (shards) in the current space (advanced use).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Opaque cursor string from a previous response for pagination. | |
json | No | Format output as newline delimited JSON (default: true). | |
size | No | Desired number of results to return. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Lists stored CAR files (shards) in the current space (advanced use).",
"properties": {
"cursor": {
"description": "Opaque cursor string from a previous response for pagination.",
"type": "string"
},
"json": {
"default": true,
"description": "Format output as newline delimited JSON (default: true).",
"type": "boolean"
},
"size": {
"description": "Desired number of results to return.",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"type": "object"
}