get_address_token_transfers
Pack: blockscout · Endpoint: https://gateway.pipeworx.io/blockscout/mcp
ERC-20/721/1155 transfers to/from an address.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | yes | |
address | string | yes | |
token | string | no | Restrict to a specific token contract |
limit | number | no | Default 25 |
Example call
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":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
items | array | Token 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.