get_transaction

Pack: blockscout · Endpoint: https://gateway.pipeworx.io/blockscout/mcp

“Look up transaction [0xhash]” / “what happened in tx [hash]” / “decode tx [X]” — full transaction detail (from, to, value, method, status, gas, decoded calldata). Pass chain + tx_hash. Use for forensic tx analysis, MEV inspection, contract-call breakdown.

Parameters

NameTypeRequiredDescription
chainstringyes
tx_hashstringyes

Example call

Arguments

{
  "chain": "ethereum",
  "tx_hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}

curl

curl -X POST https://gateway.pipeworx.io/blockscout/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_transaction","arguments":{"chain":"ethereum","tx_hash":"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_transaction', {
  "chain": "ethereum",
  "tx_hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Full transaction detail from Blockscout API"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "blockscout": {
      "url": "https://gateway.pipeworx.io/blockscout/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026