Skip to main content
Glama

validate_evm_checksum_address

Detect mistyped EVM addresses by validating and recalculating EIP-55 mixed-case checksums.

Instructions

Validates and recalculates EIP-55 mixed-case checksums for EVM addresses, detecting mistyped hex characters. (0.005 USDC on Base L2)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
payloadYesInput parameters or JSON string payload for the tool execution
paymentSignatureNoBase L2 USDC micropayment signature or transaction hash for x402 settlement

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior4/5

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

No annotations are present, so the description carries the full burden. It clearly discloses the core behavior (validation, recalculation, typo detection) and even exposes the micropayment cost of 0.005 USDC on Base L2, which is a concrete behavioral trait. It stops short of stating read-only guarantees, but validation semantics imply no mutation.

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?

One dense, front-loaded sentence with no filler. The cost note is compactly placed in a parenthetical and does not distract from the main purpose.

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

Completeness3/5

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

For a simple validation tool this is close to sufficient, but with no output schema and a generic payload parameter, an agent is left guessing the request format and whether the return is a boolean, corrected address, or error. The fee disclosure is useful, but input and return shape would round out the definition.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds domain meaning by indicating the payload relates to an EVM address, but it does not define the exact payload structure or how the address should be passed into the generic 'payload' string. paymentSignature is only described by the schema.

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?

States a specific verb ('Validates and recalculates') with a specific resource ('EIP-55 mixed-case checksums for EVM addresses') and even names the exact detection behavior. This clearly distinguishes it from related EVM sibling tools like verify_evm_signature without relying on the name alone.

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?

No explicit alternatives or when-not-to-use guidance are given, but the core function strongly implies usage when an EVM address checksum needs validation or correction. Usage context is implied rather than stated, and no comparison to sibling tools is offered.

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

Deploy Server

Other Tools