EVM MCP Server

by mcpdotdirect
Verified

get_transaction

Get detailed information about a specific transaction by its hash. Includes sender, recipient, value, data, and more.

Input Schema

NameRequiredDescriptionDefault
networkNoNetwork name (e.g., 'ethereum', 'optimism', 'arbitrum', 'base', 'polygon') or chain ID. Defaults to Ethereum mainnet.
txHashYesThe transaction hash to look up (e.g., '0x1234...')

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "network": { "description": "Network name (e.g., 'ethereum', 'optimism', 'arbitrum', 'base', 'polygon') or chain ID. Defaults to Ethereum mainnet.", "type": "string" }, "txHash": { "description": "The transaction hash to look up (e.g., '0x1234...')", "type": "string" } }, "required": [ "txHash" ], "type": "object" }