get_token_info
Retrieve detailed information about any Ethereum token using its address hash. Access token metadata, contract details, and blockchain data for analysis and verification.
Instructions
Get detailed information about a specific token
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | The token address hash |
Implementation Reference
- index.js:750-752 (handler)The core handler logic for the 'get_token_info' tool. It extracts the token address from the input arguments and makes an authenticated GET request to the ChainFETCH API endpoint /api/v1/ethereum/tokens/{tokenAddress}.case 'get_token_info': const { token: tokenAddress } = args; return await this.makeRequest(`/api/v1/ethereum/tokens/${tokenAddress}`, 'GET', {}, null, token);
- index.js:474-487 (registration)Registration of the 'get_token_info' tool in the MCP server's tools list, including its description and input schema validation.{ name: 'get_token_info', description: 'Get detailed information about a specific token', inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'The token address hash', }, }, required: ['token'], }, },
- index.js:474-487 (schema)Input schema definition for the 'get_token_info' tool, specifying a required 'token' string parameter.{ name: 'get_token_info', description: 'Get detailed information about a specific token', inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'The token address hash', }, }, required: ['token'], }, },