lookup_token_by_symbol
Find token addresses by symbol or name using the Blockscout MCP Server. Returns matching token results based on similarity, limited to the top results. Specify chain ID and token details to search blockchain data efficiently.
Instructions
Search for token addresses by symbol or name. Returns multiple potential
matches based on symbol or token name similarity. Only the first
``TOKEN_RESULTS_LIMIT`` matches from the Blockscout API are returned.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain_id | Yes | The ID of the blockchain | |
symbol | Yes | Token symbol or name to search for |
Input Schema (JSON Schema)
{
"properties": {
"chain_id": {
"description": "The ID of the blockchain",
"title": "Chain Id",
"type": "string"
},
"symbol": {
"description": "Token symbol or name to search for",
"title": "Symbol",
"type": "string"
}
},
"required": [
"chain_id",
"symbol"
],
"title": "lookup_token_by_symbolArguments",
"type": "object"
}