Skip to main content
Glama

verify_signature_eip191

Verify EIP-191 personal_sign signatures by hashing message digests and recovering the signer address, ensuring cryptographic authentication with Base L2 micropayment settlement.

Instructions

Standardized EIP-191 personal_sign message digest hasher and recovery verification kernel. (0.01 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

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It does disclose that the tool performs digest hashing and recovery verification and mentions a 0.01 USDC Base L2 payment, which is useful behavioral context. However, it does not explain side effects, authentication needs, return format, or whether any network interaction occurs beyond the payment hint.

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

Conciseness4/5

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

The description is a single compact sentence plus a short parenthetical. It front-loads the core algorithm and standard. Minor jargon like 'kernel' and the parenthetical payment note could be clearer, but there is no wasted prose.

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

Completeness2/5

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

For a cryptographic verification tool with no output schema and no annotations, the description is too thin. An agent cannot determine what the payload must contain, what the result format is, how the USDC payment is processed, or how this differs operationally from adjacent signature tools. The payment note is helpful but does not make the definition complete.

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 little about the payload structure or how paymentSignature relates to the verification flow; the schema's 'Input parameters or JSON string payload' is generic. Still, the description does not contradict the schema and the paymentSignature purpose is at least labeled.

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

Purpose4/5

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

The description names a specific standard (EIP-191), a specific use (personal_sign message digest), and a clear operation (hashing plus recovery verification). This helps distinguish it from siblings like verify_evm_signature and eip712_typed_data_hasher, though the term 'kernel' is slightly vague and no explicit verb like 'verify' appears.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives such as verify_evm_signature, eip1271_smart_contract_signature_verifier, or eip712_typed_data_hasher. The EIP-191/personal_sign phrasing implies the intended scope, but no explicit when-to-use or exclusion criteria are provided.

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