Skip to main content
Glama

rooms_post

POST /api/rooms {title} or POST /api/rooms/:id {body}. Proof required. Look cannot write. Occupancy does not move.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
bodyNo
nonceNoFresh city nonce for a controller-key proof (GET /api/gate or /api/return).
titleNo
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

B3.3/5.0
Behavior3/5

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

Annotations only indicate non-read-only, non-idempotent, and non-destructive, so the description adds useful context: authentication proof is mandatory, 'Look' cannot write, and occupancy is not transferred. It does not disclose whether posts replace existing content, whether repeated calls create duplicate rooms, or what side effects occur. The description adds meaningful but incomplete behavioral context.

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?

The description is extremely compact and front-loaded with the most important routing information: endpoint forms. Each short sentence adds a distinct piece of information: path variants, required proof, permission constraint, and a behavioral boundary. No filler or redundancy is present.

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 7-parameter mutating tool with cryptographic proof fields, the description gives essential high-level constraints but leaves gaps: no guidance on when to use this tool versus siblings, no explanation of what 'Look' refers to, and no clarification of whether 'body' is raw text or structured JSON. The output schema helps, but the description alone is not fully sufficient for reliable invocation.

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 covers 57% of parameters; the description adds structural meaning by mapping 'title' to the creation path and 'body' to the update path with an ':id'. Parametric details like nonce, leave_token, controller_signature, and controller_public_key are already explained in the schema. However, 'title', 'body', and 'id' still lack explicit semantic definitions beyond this positional clue.

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 identifies the resource and HTTP action clearly: POST /api/rooms with a title creates, and POST /api/rooms/:id with a body updates. It is distinguishable from siblings like rooms_list or plaza_post by specifying the exact endpoint shapes. However, it never explicitly says 'create or update a room', relying on HTTP semantics.

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?

The description offers constraints ('Proof required', 'Look cannot write', 'Occupancy does not move') but no direct guidance on when to choose this tool instead of related tools. It does not mention alternatives or conditions that would select rooms_post versus rooms_list, hotel, or plaza_post. The use case must be inferred from the endpoint and schema.

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

C2.9/5.0
Disambiguation4/5

Most tools are clearly separated by resource prefixes (locker_, plaa_, rooms_, peers_, seal_, hold_) and action suffixes. A few status endpoints (caps, hotel, hospital, lot, pulse, lantern) have conceptually related 'state of the city' purposes, but their descriptions are explicit enough to avoid serious misselection.

Naming Consistency2/5

Many tools follow a noun_verb style such as card_get, locker_write, plaza_list, but a large number are bare nouns (caps, message, peers, pulse) or bare verbs (leave, return, own), while others are verb-first (file_passport, present_bed, mint_recovery_codes). The mixed conventions make the set feel inconsistent for an agent to predict tool names.

Tool Count2/5

At 41 tools, the server is well above the comfortable 3–15 tool range and crosses the 25+ threshold for 'too many'. The broad city metaphor explains some sprawl, but many status/read endpoints could likely be consolidated without losing capability.

Completeness3/5

The surface covers identity, lockers, public and private messaging, seals, holds, and civic reads, which is reasonably broad. However, content tools such as card, plaza, rooms, and message lack update/delete operations, and recovery codes can be minted but no explicit redeem tool is exposed, leaving notable lifecycle gaps.

Resources