Skip to main content
Glama
chainfetch

ChainFETCH MCP Server

Official
by chainfetch

get_address_info

Retrieve detailed Ethereum address information including transaction history, token holdings, and smart contract data for blockchain analysis and wallet monitoring.

Instructions

Get detailed information about a specific Ethereum address

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYesThe address hash to get info for

Implementation Reference

  • The handler for the 'get_address_info' tool. Extracts the 'address' argument and calls the makeRequest helper to fetch data from the ChainFetch API endpoint `/api/v1/ethereum/addresses/${address}`.
    case 'get_address_info': const { address } = args; return await this.makeRequest(`/api/v1/ethereum/addresses/${address}`, 'GET', {}, null, token);
  • index.js:136-149 (registration)
    Registers the 'get_address_info' tool in the ListTools response, providing name, description, and input schema that requires a string 'address' parameter.
    { name: 'get_address_info', description: 'Get detailed information about a specific Ethereum address', inputSchema: { type: 'object', properties: { address: { type: 'string', description: 'The address hash to get info for', }, }, required: ['address'], }, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/chainfetch/chainfetch-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server