Blockscout MCP
get_tokens_by_address
Get comprehensive ERC20 token holdings for an address with enriched metadata and market data. Returns detailed token information including contract details (name, symbol, decimals), market metrics (exchange rate, market cap, volume), holders count, and actual balance (provided as is, without adjusting by decimals). Essential for portfolio analysis, wallet auditing, and DeFi position tracking. **SUPPORTS PAGINATION**: If response includes 'pagination' field, use the provided next_call to get additional pages.
Remote blockscout/mcp-server
Other tools also called get_tokens_by_address?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Cursor",
"default": null,
"description": "The pagination cursor from a previous response to get the next page of results."
},
"address": {
"type": "string",
"title": "Address",
"description": "Wallet address"
},
"chain_id": {
"type": "string",
"title": "Chain Id",
"description": "The ID of the blockchain"
}
}
}