w3_can_blob_rm
Remove a blob from the MCP-IPFS server store using its base58btc encoded multihash to efficiently manage storage and data operations.
Instructions
Removes a blob from the store by its base58btc encoded multihash.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
multihash | Yes | Base58btc encoded multihash of the blob to remove. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Removes a blob from the store by its base58btc encoded multihash.",
"properties": {
"multihash": {
"description": "Base58btc encoded multihash of the blob to remove.",
"type": "string"
}
},
"required": [
"multihash"
],
"type": "object"
}