w3_open
Access content stored in IPFS using its CID and optional path, enabling direct retrieval and navigation within the mcp-ipfs server's network.
Instructions
Tool for w3_open operation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | Yes | The CID of the content to open. | |
path | No | Optional path within the content to append to the URL. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cid": {
"description": "The CID of the content to open.",
"type": "string"
},
"path": {
"description": "Optional path within the content to append to the URL.",
"type": "string"
}
},
"required": [
"cid"
],
"type": "object"
}