get-block-info
Retrieve detailed block information from MantraChain blockchain by specifying block height and network name using the Model Context Protocol (MCP).
Instructions
Get block information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | No | Optional block height to query, defaults to latest block | |
networkName | Yes | Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"height": {
"description": "Optional block height to query, defaults to latest block",
"type": "number"
},
"networkName": {
"description": "Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments",
"type": "string"
}
},
"required": [
"networkName"
],
"type": "object"
}