bitquery_token_transfers
Pack: bitquery · Endpoint: https://gateway.pipeworx.io/bitquery/mcp
Recent transfers of a token — ERC-20 transfer events for a token contract on an EVM chain (Bitquery). Returns transfer time, sender, receiver, amount, and tx hash. Example: bitquery_token_transfers({ token: “0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48”, network: “eth”, limit: 20, _apiKey: “your-bitquery-token” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
token | string | yes | ERC-20 token contract address. Required. |
network | string | no | EVM network enum (default “eth”). See bitquery_dex_trades for options. |
limit | integer | no | Max transfers to return (default 20, max 50). |
_apiKey | string | yes | Bitquery OAuth access token (Bearer). Generate at bitquery.io (free Developer tier). |
Example call
Arguments
{
"token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"network": "eth",
"limit": 20,
"_apiKey": "your-bitquery-token"
}
curl
curl -X POST https://gateway.pipeworx.io/bitquery/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bitquery_token_transfers","arguments":{"token":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","network":"eth","limit":20,"_apiKey":"your-bitquery-token"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bitquery_token_transfers', {
"token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"network": "eth",
"limit": 20,
"_apiKey": "your-bitquery-token"
});
More examples
{
"token": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
"network": "eth",
"_apiKey": "your-bitquery-token"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bitquery": {
"url": "https://gateway.pipeworx.io/bitquery/mcp"
}
}
}
See Getting Started for client-specific install steps.