w3_can_blob_add
Stores a single file as a blob on the IPFS network using an MCP server. Requires an absolute file path to ensure accurate file upload and management.
Instructions
Stores a single file as a blob directly with the service. Requires ABSOLUTE paths for file arguments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | ABSOLUTE path to the blob file to store. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Stores a single file as a blob directly with the service.",
"properties": {
"path": {
"description": "ABSOLUTE path to the blob file to store.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}