w3_space_create
Create a new storage space with a custom name using the mcp-ipfs server. Run this command manually in your terminal to interactively generate recovery keys.
Instructions
Creates a new space with a user-friendly name. NOTE: w3 space create
cannot be run via MCP due to interactive recovery key prompts. Please run this command manually in your terminal.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | An optional user-friendly name for the new space. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Creates a new space with a user-friendly name.",
"properties": {
"name": {
"description": "An optional user-friendly name for the new space.",
"type": "string"
}
},
"type": "object"
}