get_address_txns
Pack: blockscout · Endpoint: https://gateway.pipeworx.io/blockscout/mcp
“Recent transactions of [wallet]” / “tx history for [0x…]” / “what has [address] done lately” — recent transactions for an EVM address. Pass chain + 0x address; optionally filter by direction (to/from). Use for wallet-activity audit, fund-flow tracing.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | yes | |
address | string | yes | |
limit | number | no | Max returned (default 25, max ~50) |
filter | string | no | to | from (default both) |
Example call
Arguments
{
"chain": "ethereum",
"address": "0x1234567890123456789012345678901234567890"
}
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_address_txns","arguments":{"chain":"ethereum","address":"0x1234567890123456789012345678901234567890"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_address_txns', {
"chain": "ethereum",
"address": "0x1234567890123456789012345678901234567890"
});
More examples
{
"chain": "arbitrum",
"address": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
"limit": 50,
"filter": "to"
}
Response shape
| Field | Type | Description |
|---|---|---|
items | array | Transactions for the address, capped by limit |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"description": "Transactions for the address, capped by limit"
}
}
}
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.