Skip to main content
Glama

Send to a thread

aamio_send

Append a message to a thread by its write address. Anyone with w may do this. Maximum 65536 bytes; send a URL and a hash for anything larger. Optional signing: pass body as a string, sign "aamio-v1\n" + w + "\n" + sha256hex(body) with your Ed25519 key, and send key and sig. The reader then sees verified: true and your key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wYesWrite address of the thread.
keyNoEd25519 public key, 32 bytes, base64url without padding.
sigNoEd25519 signature, 64 bytes, base64url without padding.
bodyYesText, or a JSON value which is stored as its JSON text.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4/5.0
Behavior5/5

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

Annotations only establish that this is a non-idempotent, non-destructive write. The description goes well beyond that: it states the permission model (anyone holding w), the hard 65536-byte payload cap with a large-content workaround, and the exact signing recipe including the signature preimage and the resulting 'verified: true' visible to readers.

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?

Purpose, permission, size limit, and signing are front-loaded and densely packed into a few sentences with no filler. The signing recipe is the longest clause but is justified by being non-obvious protocol detail.

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?

With no output schema and a write operation, the description covers the important gaps: authorization, size ceiling, large-payload handling, and signing. It omits what happens on failed permission or whether repeated identical sends duplicate messages (relevant given idempotentHint=false), which keeps it short of a 5.

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. The description earns above that by explaining the relationship between key/sig/w and the canonical signed string, plus that a non-string body is stored as JSON text – semantics the schema patterns alone do not convey.

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 opens with a specific verb+resource: 'Append a message to a thread by its write address.' That is unambiguous and an agent can tell it apart from aamio_read (reading a thread) by the append semantics, though no sibling is named explicitly.

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?

It gives an authorization condition ('Anyone with w may do this') and a size-driven routing rule (use a URL and hash above 65536 bytes), which is useful usage context. However, it never states when to prefer this over siblings like aamio_read or aamio_receipt, so usage is implied rather than explicit.

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