← blockscout.com

INDIVIDUAL MCP TOOL

get_address_info

Get comprehensive information about an address, including: - Address existence check - Native token (ETH) balance (provided as is, without adjusting by decimals) - First transaction details (block number and timestamp) for age calculation - 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.

blockscout.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.blockscout.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_address_info and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name, description or schema mentions credentials.

Parent server

blockscout.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.blockscout-mcp-server]
url = "https://mcp.blockscout.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "blockscout-mcp-server": {
      "type": "http",
      "url": "https://mcp.blockscout.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: blockscout-mcp-server
Remote MCP URL: https://mcp.blockscout.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "blockscout-mcp-server": {
      "url": "https://mcp.blockscout.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "blockscout-mcp-server": {
      "type": "http",
      "url": "https://mcp.blockscout.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "blockscout-mcp-server",
  "transport": "streamable-http",
  "url": "https://mcp.blockscout.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools