get_total_supply
Retrieve the total supply of a token by specifying its address and chain ID using the Etherscan MCP Tool's blockchain data interaction feature.
Instructions
Get the total supply of a token given its address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain_id | Yes | The chain ID | |
token_address | Yes | The address of the token |
Input Schema (JSON Schema)
{
"properties": {
"chain_id": {
"description": "The chain ID",
"type": "integer"
},
"token_address": {
"description": "The address of the token",
"type": "string"
}
},
"required": [
"chain_id",
"token_address"
],
"type": "object"
}