Skip to main content
Glama
get-transaction-receipt.ts986 B
import { FastMCP } from "fastmcp"; import { z } from "zod"; import { getTransactionReceipt } from "@wagmi/core" import { wagmiConfig } from "../wagmi-config.js"; import { type Address } from "viem"; import { JSONStringify } from "../utils/json-stringify.js"; export function registerGetTransactionReceiptTools(server: FastMCP): void { server.addTool({ name: "get-transaction-receipt", description: "Get the Transaction Receipt given a Transaction hash", parameters: z.object({ hash: z.string(), chainId: z.coerce.number().optional(), }), execute: async (args) => { const hash = args.hash as Address const chainId = args.chainId as typeof wagmiConfig['chains'][number]['id'] const result = await getTransactionReceipt(wagmiConfig, { hash, chainId, }) return { content: [ { type: "text", text: JSONStringify(result), }, ], } }, }); };

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