Blockscout MCP
get_transaction_info
Get comprehensive transaction information. Unlike standard eth_getTransactionByHash, this tool returns enriched data including decoded input parameters, detailed token transfers with token metadata, transaction fee breakdown (priority fees, burnt fees) and categorized transaction types. By default, the raw transaction input is omitted if a decoded version is available to save context; request it with `include_raw_input=True` only when you truly need the raw hex data. Essential for transaction analysis, debugging smart contract interactions, tracking DeFi operations.
Remote blockscout/mcp-server
Other tools also called get_transaction_info?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"chain_id": {
"type": "string",
"title": "Chain Id",
"description": "The ID of the blockchain"
},
"transaction_hash": {
"type": "string",
"title": "Transaction Hash",
"description": "Transaction hash"
},
"include_raw_input": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Include Raw Input",
"default": false,
"description": "If true, includes the raw transaction input data."
}
}
}