Skip to main content
Glama

Ethereum address checksum

hopi_eth_address_checksum
Read-onlyIdempotent

Validate an Ethereum address's EIP-55 capitalisation checksum and return the correctly checksummed form. Reports whether the input is already checksummed, lacks a checksum (all one case), or fails the checksum. Uses keccak-256 exactly as EIP-55 specifies. Source: https://hopi.co.uk/eth-address-checksum/

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYesThe Ethereum address, with or without a 0x prefix

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNo
validYes
statusNo
summaryYes
source_urlYesThe tool's page on hopi.co.uk (cite or open to check the figure)
checksummedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedOutput schema / required
      Added value: +[
      +  "source_url",
      +  "summary",
      +  "valid"
      +]
  2. First observed

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds valuable behavioral detail: it specifies the exact algorithm (keccak-256 per EIP-55) and describes the three possible outputs (checksummed, lacking checksum, or failed), which goes beyond annotations. No contradictions exist.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences with zero fluff. The first sentence states the core action and result, the second enumerates the output categories, and the third cites the exact algorithm and source. Every sentence earns its place, and the structure is scannable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read-only tool with an output schema present, the description covers the essential behavioral contract: input validation, algorithm, and the possible result states. It does not detail edge cases like malformed address lengths, but these are minor and reasonably implied by 'fails the checksum'. Overall, the description is sufficiently complete for an agent to use it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides 100% coverage for the single 'address' parameter, describing it as 'The Ethereum address, with or without a 0x prefix'. The description does not add further parameter-specific details, so the baseline of 3 is appropriate. It neither harms nor enhances the schema's clarity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly names the verb 'Validate', the resource 'Ethereum address's EIP-55 capitalisation checksum', and the outcome 'return the correctly checksummed form'. It also reports the three possible classification states, making the tool's purpose unmistakable and distinct from sibling tools like hopi_eth_unit_converter or hopi_bitcoin_address_validator.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied by the description: use this tool to validate Ethereum EIP-55 checksums. However, there is no explicit guidance on when to choose this over alternatives, such as when a Bitcoin address validator would be appropriate, nor any stated exclusions. The description relies on the tool name and context to convey applicability.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources