w3_usage_report
Generate storage usage reports for specified or current spaces, with options to format output as JSON. Accessible via MCP IPFS Server for managing storage and data operations.
Instructions
Displays a storage usage report for the current or specified space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
json | No | Format output as JSON (default: true). | |
spaceDid | No | Optional DID of the space to get usage for (defaults to current space). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Displays a storage usage report for the current or specified space.",
"properties": {
"json": {
"default": true,
"description": "Format output as JSON (default: true).",
"type": "boolean"
},
"spaceDid": {
"description": "Optional DID of the space to get usage for (defaults to current space).",
"pattern": "^did\\:key\\:",
"type": "string"
}
},
"type": "object"
}