EVM MCP Server

by mcpdotdirect
Verified

get_transaction_receipt

Get a transaction receipt by its hash

Input Schema

NameRequiredDescriptionDefault
networkNoNetwork name or chain ID. Defaults to Ethereum mainnet.
txHashYesThe transaction hash to look up

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "network": { "description": "Network name or chain ID. Defaults to Ethereum mainnet.", "type": "string" }, "txHash": { "description": "The transaction hash to look up", "type": "string" } }, "required": [ "txHash" ], "type": "object" }