Blockscout MCP

get_address_info

Get comprehensive information about an address, including: - Address existence check - Native token (ETH) balance (provided as is, without adjusting by decimals) - ENS name association (if any) - Contract status (whether the address is a contract, whether it is verified) - Proxy contract information (if applicable): determines if a smart contract is a proxy contract (which forwards calls to implementation contracts), including proxy type and implementation addresses - Token details (if the contract is a token): name, symbol, decimals, total supply, etc. Essential for address analysis, contract investigation, token research, and DeFi protocol analysis.

Remote blockscout/mcp-server

Other tools also called get_address_info? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "title": "Address",
      "description": "Address to get information about"
    },
    "chain_id": {
      "type": "string",
      "title": "Chain Id",
      "description": "The ID of the blockchain"
    }
  }
}