w3_space_info
Retrieve information about a specific or current storage space on the MCP-IPFS server. Verify login status and specify a space DID to access detailed space metadata in JSON format.
Instructions
Tool for w3_space_info operation. NOTE: no current space and no space given
or {"spaces":[]}
first make sure you are logged in before using other tools.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
json | No | Format output as newline delimited JSON (default: true). | |
spaceDid | No | Optional DID of the space to get info for (defaults to current space). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"json": {
"default": true,
"description": "Format output as newline delimited JSON (default: true).",
"type": "boolean"
},
"spaceDid": {
"description": "Optional DID of the space to get info for (defaults to current space).",
"pattern": "^did\\:key\\:",
"type": "string"
}
},
"type": "object"
}