asset_transfers
Pack: alchemy-eth · Endpoint: https://gateway.pipeworx.io/alchemy-eth/mcp
Fetch Ethereum asset transfer history via Alchemy’s alchemy_getAssetTransfers RPC on the specified chain; accepts fromBlock, toBlock, fromAddress, toAddress, contractAddresses, category, and maxCount as passthrough params.
Example call
Arguments
{
"fromAddress": "0x1234567890123456789012345678901234567890",
"toAddress": "0x0987654321098765432109876543210987654321",
"category": "external"
}
curl
curl -X POST https://gateway.pipeworx.io/alchemy-eth/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"asset_transfers","arguments":{"fromAddress":"0x1234567890123456789012345678901234567890","toAddress":"0x0987654321098765432109876543210987654321","category":"external"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('asset_transfers', {
"fromAddress": "0x1234567890123456789012345678901234567890",
"toAddress": "0x0987654321098765432109876543210987654321",
"category": "external"
});
Response shape
| Field | Type | Description |
|---|---|---|
transfers | array | Array of transfer objects |
pageKey | string | Pagination key for next page |
Full JSON Schema
{
"type": "object",
"properties": {
"transfers": {
"type": "array",
"description": "Array of transfer objects",
"items": {
"type": "object",
"properties": {
"from": {
"type": "string",
"description": "Sender address"
},
"to": {
"type": "string",
"description": "Recipient address"
},
"blockNum": {
"type": "string",
"description": "Block number as hex string"
},
"hash": {
"type": "string",
"description": "Transaction hash"
},
"value": {
"type": "number",
"description": "Transfer amount"
},
"erc721TokenId": {
"type": "string",
"description": "ERC-721 token ID"
},
"erc1155Metadata": {
"type": "array",
"description": "ERC-1155 metadata"
},
"tokenName": {
"type": "string",
"description": "Token name"
},
"tokenSymbol": {
"type": "string",
"description": "Token symbol"
},
"tokenDecimal": {
"type": "integer",
"description": "Token decimals"
},
"contractAddress": {
"type": "string",
"description": "Contract address"
},
"category": {
"type": "string",
"enum": [
"external",
"internal",
"erc20",
"erc721",
"erc1155"
],
"description": "Transfer category"
}
}
}
},
"pageKey": {
"type": "string",
"description": "Pagination key for next page"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"alchemy-eth": {
"url": "https://gateway.pipeworx.io/alchemy-eth/mcp"
}
}
}
See Getting Started for client-specific install steps.