get-block-number
Retrieve the most recent block number from a specified blockchain chain using the provided chain ID. Simplify blockchain data access with secure MetaMask MCP server integration.
Instructions
Fetch the number of the most recent block seen.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chainId | No | ID of chain to use when fetching data. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"description": "ID of chain to use when fetching data.",
"type": "number"
}
},
"type": "object"
}