get_address_token_transfers

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

“Token transfers / NFT activity for [wallet]” / “ERC-20 / ERC-721 / ERC-1155 transfers in/out of [0x…]” / “what tokens did [address] send or receive” — token transfer log for an EVM address. Use for tracing NFT activity, stablecoin flows, airdrops, or specific-token movement (filter via token arg).

Parameters

NameTypeRequiredDescription
chainstringyes
addressstringyes
tokenstringnoRestrict to a specific token contract
limitnumbernoDefault 25

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_token_transfers","arguments":{"chain":"ethereum","address":"0x1234567890123456789012345678901234567890"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_address_token_transfers', {
  "chain": "ethereum",
  "address": "0x1234567890123456789012345678901234567890"
});

More examples

{
  "chain": "polygon",
  "address": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
  "token": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
  "limit": 10
}

Response shape

FieldTypeDescription
itemsarrayToken transfers for the address, capped by limit
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Token transfers 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.

Regenerated from source · build July 6, 2026