w3_can_filecoin_info
Retrieve Filecoin deal details for a specified Piece CID, enabling advanced data management and insights on the MCP-IPFS server.
Instructions
Gets Filecoin deal information for a given Piece CID (advanced use).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pieceCid | Yes | The Piece CID to get Filecoin information for. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Gets Filecoin deal information for a given Piece CID (advanced use).",
"properties": {
"pieceCid": {
"description": "The Piece CID to get Filecoin information for.",
"type": "string"
}
},
"required": [
"pieceCid"
],
"type": "object"
}