Skip to main content
Glama

FlexYield — blockchain RPC gateway

evm_utils

EVM developer utilities: 'checksum' (EIP-55 checksum + validity for input=address), 'convert' (units wei…eth; input=value, from=unit, to=unit), 'selector' (4-byte selector + topic0 for input=function signature), 'keccak' (keccak256 of input text).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
opYesOne of: checksum, convert, selector, keccak
toNoconvert only: target unit, e.g. 'wei'
fromNoconvert only: source unit, e.g. 'eth'
inputYesThe address / value / signature / text

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description must carry the safety/behavior burden. It discloses what each mode returns (EIP-55 checksum + validity, 4-byte selector + topic0, keccak256 hash) and implies a pure, side-effect-free utility. It stops short of detailing exact response shapes or invalid-input handling, but no annotation 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?

One dense sentence with a colon-led list; every clause corresponds to a distinct operation and no filler. The structure front-loads the tool's domain and lets an agent quickly scan the supported modes.

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 four-mode utility with no output schema, the description covers each mode's input and output at a useful level. The main gap is that `to`/`from` are schema-optional but description implies both are required for convert; a short example or explicit requiredness note would remove ambiguity.

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

Parameters5/5

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

Although schema descriptions cover all four parameters, they are generic ('address / value / signature / text'). The description adds op-specific meaning by mapping checksum to addresses, convert to value+from+to units, selector to function signatures, and keccak to text, which is exactly what an agent needs to populate parameters correctly.

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 names the resource ('EVM developer utilities') and breaks it into four concrete operations with explicit input/output semantics: checksum, convert, selector, keccak. This level of specificity separates it from sibling EVM tools like decode_calldata and verify_signature, which address different concerns.

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

Usage Guidelines4/5

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

Each operation includes its intended input ('input=address', 'input=function signature'), making selection within the tool explicit. It doesn't explicitly rule out alternatives, but the operation-level context is clear enough for an agent to pick the right mode.

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