EVM MCP Server

by mcpdotdirect
Verified

get_transaction

Retrieve detailed transaction data, including sender, recipient, value, and more, by inputting a transaction hash. Works across multiple Ethereum-compatible networks via EVM MCP Server.

Instructions

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" }
ID: z9r55dx1np