evm_getdiscoverytoken
Retrieve detailed token information, including metadata and stats, by specifying the blockchain chain and token address using the Moralis MCP Server.
Instructions
Retrieve comprehensive details for a specific token, including metadata and stats. For more detailed tokens stats we recommended to use getTokenAnalytics
or getMultipleTokenAnalytics
. For pair stats, we recommend to use getPairStats
.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | The chain to query | |
token_address | Yes | The address of the token |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"description": "The chain to query",
"enum": [
"eth",
"mainnet",
"0x1",
"matic",
"0x89",
"polygon",
"bsc",
"binance",
"0x38",
"fantom",
"ftm",
"0xfa",
"arbitrum",
"0xa4b1",
"optimism",
"0xa",
"base",
"0x2105",
"linea",
"0xe708",
"0x7e4",
"ronin"
],
"type": "string"
},
"token_address": {
"description": "The address of the token",
"type": "string"
}
},
"required": [
"chain",
"token_address"
],
"type": "object"
}