get_blob_info
Retrieve details about a blob, such as size and availability, by providing its unique ID. Part of the Walrus MCP Server for decentralized storage and blockchain-verified data access.
Instructions
Get information about a blob (size, availability, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blobId | Yes | The blob ID to get information about |
Input Schema (JSON Schema)
{
"properties": {
"blobId": {
"description": "The blob ID to get information about",
"type": "string"
}
},
"required": [
"blobId"
],
"type": "object"
}