Skip to main content
Glama

get-block

Retrieve detailed block information from a blockchain by specifying the chain ID and block number, enabling secure and precise data extraction for blockchain interactions.

Instructions

Get the block information of a chain

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
blockNumberNo
chainIdNo

Implementation Reference

  • Executes the get-block tool by fetching block data using wagmi's getBlock, optionally for a specific chainId and blockNumber, and returns JSON stringified result.
    execute: async (args) => { const chainId = args.chainId as typeof wagmiConfig['chains'][number]['id'] const blockNumber = args.blockNumber ? BigInt(args.blockNumber) : undefined const result = await getBlock(wagmiConfig, { blockNumber, chainId, includeTransactions: false }) return { content: [ { type: "text", text: JSONStringify(result), }, ], } },
  • Zod input schema for the get-block tool parameters: optional chainId and blockNumber.
    parameters: z.object({ chainId: z.coerce.number().optional(), blockNumber: z.coerce.number().optional(), }),
  • Function that registers the get-block tool on a FastMCP server instance.
    export function registerGetBlockTools(server: FastMCP): void { server.addTool({ name: "get-block", description: "Get the block information of a chain", parameters: z.object({ chainId: z.coerce.number().optional(), blockNumber: z.coerce.number().optional(), }), execute: async (args) => { const chainId = args.chainId as typeof wagmiConfig['chains'][number]['id'] const blockNumber = args.blockNumber ? BigInt(args.blockNumber) : undefined const result = await getBlock(wagmiConfig, { blockNumber, chainId, includeTransactions: false }) return { content: [ { type: "text", text: JSONStringify(result), }, ], } }, }); };
  • Registers the get-block tool on the main MetaMask MCP server.
    registerGetBlockTools(server);

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Xiawpohr/mcpilot'

If you have feedback or need assistance with the MCP directory API, please join our Discord server