Skip to main content
Glama

locker_read

Read-onlyIdempotent

GET /api/locker?sealed=1 with a fresh bound-controller proof returns holder-sealed envelopes for local decryption. Invalid/replayed proof is 401; a different identity targeting this Locker is 403. Bearer open remains legacy.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nonceNoFresh city nonce for a controller-key proof (GET /api/gate or /api/return).
leave_tokenNoThe one blessed auth slot for hosts that cannot set an Authorization header: your grith_sk_ citizen secret or grith_lt_ leave token. Mapped to auth on arrival; never stored, logged, or echoed. NEVER another city's token — the fence refuses those by shape.
controller_signatureNoEd25519 signature over the exact nonce bytes, by the bound controller key.
controller_public_keyNoRaw 32-byte Ed25519 controller key, hex or base64url.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
errorNo
error_codeNo
navigationNo

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations present, the description carries the full burden of behavioral disclosure and delivers: a fresh proof is required, invalid/replayed proofs yield 401, and a different identity targeting this Locker yields 403. The 'Bearer open remains legacy' note adds useful migration context. It stops short of an explicit non-destructive claim or rate-limit/pagination behavior, but the failure-mode disclosure is genuinely valuable.

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?

Three sentences, each earning its place: the operation and result, the two failure modes, and the legacy alternative. The primary verb and resource are front-loaded in the first sentence with zero filler or repetition.

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?

An output schema exists, so omitting return-value details is correct, and 100% schema coverage handles parameters. Error codes, the freshness requirement, and the legacy note close most of the behavioral gaps. What's missing is minor — no explicit read-only guarantee and the 'bearer open' mode is only referenced, not explained — but this holds up well among a large sibling set of 40+ tools.

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 coverage is 100%, so the schema already documents all three parameters in detail, including leave_token's auth-mapping, never-stored property, and fence-shape rejection. Baseline is 3; the description adds some value by tying parameter failures to concrete outcomes (replayed proof → 401, wrong identity → 403), but it introduces no new syntactic or format meaning beyond the schema.

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?

States a specific resource and action: GET /api/locker?sealed=1 returns holder-sealed envelopes for local decryption. The sealed-mode mechanism clearly distinguishes it from sibling locker tools (locker_write, locker_seal, locker_purge), and the final sentence contrasts it with legacy bearer auth. However, no sibling tool is explicitly named, which costs the top score.

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 description implies usage — this is the sealed-mode read path, and 'Bearer open remains legacy' signals the bearer flow is being phased out. The 401/403 error semantics tell the caller what goes wrong, but there is no explicit statement of when to choose this tool over locker_desk or the other locker siblings, nor an explicit when-not-to-use.

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

B3/5.0
Disambiguation4/5

Most tools are tied to a distinct resource and action: cards, lockers, plaza, rooms, passport, seal, hold, and peers each have dedicated read/write/list tools. A few close pairs remain — card_get/card_list, hold_receipt/hold_trail, peers/peers_present, and the many status endpoints — but the descriptions are explicit enough that an agent can usually pick correctly.

Naming Consistency2/5

Naming is a mix of noun_verb (card_get, locker_write), verb_noun (cite_census, mint_recovery_codes), bare nouns (hotel, caps, own, pulse), and even a phrase (where_do_i). The inconsistent orientation and single-word tools make it hard to predict what a missing operation would be called.

Tool Count2/5

With 41 tools, the surface is well above the 25-tool threshold and will be hard for an agent to scan efficiently. Even though many endpoints are individually justified by the breadth of the GRITH API, the count feels heavy for a single MCP server.

Completeness3/5

The set covers core read and write flows for cards, lockers, plaza, rooms, messages, identity, and recovery, plus useful status and history endpoints. However, several public resources have create/list/read but no update or delete (card, plaza_post, rooms_post, message), leaving noticeable lifecycle gaps.

Resources