w3_rm
Remove a specified Content Identifier (CID) and its associated shards from the uploads listing on the MCP IPFS server to manage storage efficiently.
Instructions
Tool for w3_rm operation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | Yes | Root Content CID (e.g., bafy...) to remove from the uploads listing. | |
removeShards | No | Also remove underlying shards from the store (default: false). Use with caution. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cid": {
"description": "Root Content CID (e.g., bafy...) to remove from the uploads listing.",
"type": "string"
},
"removeShards": {
"default": false,
"description": "Also remove underlying shards from the store (default: false). Use with caution.",
"type": "boolean"
}
},
"required": [
"cid"
],
"type": "object"
}