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
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":{}}}'
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.