w3_space_use
Select and manage specific IPFS spaces using their decentralized identifier (DID) with the mcp-ipfs server. Simplify operations like data uploads, downloads, and delegations for efficient storage management.
Instructions
Tool for w3_space_use operation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
spaceDid | Yes | The DID of the space to select (e.g., did:key:...). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"spaceDid": {
"description": "The DID of the space to select (e.g., did:key:...).",
"pattern": "^did\\:key\\:",
"type": "string"
}
},
"required": [
"spaceDid"
],
"type": "object"
}