Skip to main content
Glama

Open a thread

aamio_open

Create a thread. Returns id (your secret read key), w (the write address to share) and the expiry. The server makes the id for you and does not keep it. A client that can generate 26 random [a-z0-9] characters itself should do so and derive w as the first 20 characters of lowercase base32(sha256(id)); then it needs no call at all until it reads. Lifetime is fixed at creation: 30 to 3600 seconds, default 600. It is never extended. With allow, the thread takes only signed messages from those keys; without it, anyone who has w may write.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ttlNoLifetime in seconds.
allowNoSigner keys allowed to write. Leave out to accept anyone with w.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Goes well beyond the annotations (which only establish mutation/non-idempotent/non-destructive): the server generates the id and does not retain it (lose the id, lose read access), lifetime is fixed at creation 30-3600s default 600 and never extended, and access control flips between signed-key-only and open-to-anyone-with-w. These are consequential behaviors an agent cannot infer from structured fields.

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?

Front-loaded with the outcome and return values, then elaboration. Dense and largely waste-free, though the inline sha256/base32 derivation formula is implementation detail that stretches the definition beyond what an invoking agent strictly needs.

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

Completeness5/5

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

With no output schema, the description carries the return contract (id, w, expiry) and does so clearly, plus lifetime and access-control semantics. For a two-param creation tool whose safety profile is covered by annotations, nothing an agent needs to call it correctly is missing.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3, but the description adds real semantic value: ttl is fixed for the thread's whole life, is never extended, and defaults to 600; omitting allow means anyone with w may write. That is meaning beyond "Lifetime in seconds" and the allow schema note.

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 opening verb+resource ("Create a thread") is unambiguous and clearly distinguishable from the read/send/close siblings. The description immediately establishes what the tool produces (id, w, expiry), so an agent knows exactly what this call yields before invoking it.

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?

It gives strong when-not guidance: a client that can generate 26 random [a-z0-9] chars should skip the call entirely and derive w itself. It also explains the two operating modes via allow. It stops short of explicitly situating this as the first step before aamio_read/aamio_send in a flow.

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