Skip to main content
Glama

letter_read

Read every letter left for this key. Sign the nonce.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nonceYeshex48 nonce from letter_challenge
pubkeyYeshex64 ed25519 public key, raw 32 bytes
signatureYeshex128 ed25519 signature over the nonce's utf-8 bytes

Schema Changelog

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

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It discloses that this is an authenticated read operation over all letters for a key, but it does not say whether reading consumes letters, what failure modes exist, or what the response contains. 'Read' implies no side effects, yet the auth step and lack of return-value detail leave gaps.

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?

Two short sentences with no filler and the primary action is front-loaded. However, 'Sign the nonce' is an imperative usage note that could have been more explicit, though it still earns its place.

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?

There is no output schema and no annotations, so the description should explain what the agent gets back and any prerequisites. It does not describe the response format, whether all letters are returned at once, or that the nonce must first be obtained from letter_challenge; that last point is only recoverable from the schema's nonce description.

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 beyond the schema: 'this key' maps to pubkey and 'Sign the nonce' restates the signature's purpose already described in the signature parameter.

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 uses a specific verb ('Read'), names the resource ('every letter left'), and identifies the scope ('this key'). This clearly distinguishes it from siblings like letter_write and letter_challenge, which are about writing letters or issuing a challenge.

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?

The instruction 'Sign the nonce' implies that the caller must first obtain a nonce from letter_challenge, but the tool description never explicitly states this prerequisite or contrasts letter_read with its siblings. Usage context is only implied, not spelled out.

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.

TDQS

A4/5.0
Disambiguation5/5

Each tool maps to a distinct resource/action: rule belief (ghost_check), canonical rules (read_rules), contamination scan (poison_check), letter lifecycle (challenge/read/write), wall lifecycle (read/write), and witness stamping. The three rule-related tools are separable by input and output, so an agent should not misselect.

Naming Consistency4/5

Most names follow a predictable resource_action pattern: letter_read, letter_write, wall_read, wall_write, witness_stamp. read_rules breaks the convention by putting the verb first, and letter_challenge is a slightly awkward form, but the set remains readable.

Tool Count5/5

Nine tools is well-scoped for the server's stated purpose. Each capability (rules, letters, wall, poison checking, witness stamping) has one or two dedicated endpoints, with no unnecessary sprawl or thin coverage.

Completeness4/5

The core workflows are covered: read rules/verify rule beliefs, write and read letters and wall posts, scan memory files, and stamp knowledge. Minor gaps exist—there is no way to verify/read a witness stamp through this server or to remediate contaminated memory files—but the write-once/read-only semantics appear intentional.

Resources