Skip to main content
Glama

Register QNM rollup presence

mesh_join

Register one product node into the QNM rollup (POST /v1/mesh/join) — first presence, not a TTL refresh. Use this when transmission radios are LIVE and a catalog product should appear in live/locked/isolated counts. Do not use it for refreshing an existing node, reading the roster, enabling radios, or opening an account session; use mesh_heartbeat, mesh_nodes, mesh_enable, or runtime_session_open instead. Write: additive presence with a strict 5-minute TTL. Human bearers (kind=human, bearer=human, or auto-minted mesh_*) count toward public Live Nodes when not isolated. Softwares {slug}-worker rows are software_nodes and never feed Live Nodes. Downloaded instance ids stay instance_nodes. Isolated humans do not count. No heartbeat (or fan-out refresh) inside that window drops the node from the roster. Radios off refuses MESH-OFF. Missing product / bad node_id / bad presence refuse MESH-BAD-INPUT. Downloads are not live. Read-only suite-presence is ON by default. Not an account session. AnonBroadcast is not a product. Kernel-direct fabric wrapper — same mesh kernel as FragGate mesh/join; not MASTER-33; human Join uses fraggate_call. product is required (catalog slug). node_id optional 8–80 [a-z0-9._-]. presence is live|locked|isolated (default live). kind/plane may be human|instance. bearer=human marks a human mesh user. Mutation requires confirm=true (runtime gate) or dry_run=true (preview only, no write). confirm and dry_run stay optional on inputSchema.required. Returns node_id, presence, presence_ttl_ms (300000), and TTL note. MESH-OFF when radios are off.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelNoOptional short label for the roster. Display only; not a score.
confirmNoDocumented confirmation flag. Optional in inputSchema.required (connector refresh must not break). tools/call still refuses MCP-CONFIRM-REQUIRED when confirm is missing or false unless dry_run=true (preview, no write).
dry_runNoOptional preview flag. When true, return a would-mutate preview and do not write. Alternative to confirm=true. Does not mutate.
node_idNoOptional stable node id. When set, must be 8–80 characters matching [a-z0-9._-]. Omit to receive a generated id.
productYesRequired catalog product slug (a-z0-9-, for example godlock, azmail). AnonBroadcast is refused. Unknown slugs refuse MESH-BAD-INPUT.
presenceNoOptional rollup class. live (default), locked, or isolated. No scores. Other values refuse MESH-BAD-INPUT.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeNoFragGate or fabric code when present: FG-OK, FG-HALLUC-TOOL, FG-STUB, FG-LOCAL-ONLY, FG-UNKNOWN-OP, FG-GATE-REFUSE, FG-LAMB-REFUSE, or a module refuse such as MESH-* / AKM-*.
doorNoDoor name. The public door is fraggate.
ran_inNoExecution locale (for example aziel-runtime) when present.
resultNoFragGate body: ok, code, door, slug, op, engine_digest, ran_in, provenance, refusal, limitations, receipt, plus the engine result. Unknown names refuse FG-HALLUC-TOOL; stubs refuse FG-STUB.
statusNoHTTP-like status when present on wrappers (200 ok; 400+ error / refuse).
displayNoHuman-facing envelope. Show title and summary, then take the next input.
receiptNoOptional receipt, ledger tip, or TemporalLock/ForgeReceipts exit when the door stamped one.
refusalNoExplicit refuse object, code, or message when the door or engine refused.
engine_opNoResolved engine op when present (often inside result).
ledger_tipNoAsk/refuse ledger tip when the door stamped one.
provenanceNoProvenance / input packet when the pipeline attached one.
session_idNoRaw session id when session plumbing was used. Hidden unless the user asked for the chain.
engine_slugNoResolved engine slug when present (often inside result).
limitationsNoCapability limitations or Remain-OFF notes when present.
engine_digestNo64-hex engine_digest when a true in-process engine ran (often inside result).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already supply safety hints (write, non-idempotent, non-destructive, closed-world), and the description adds far beyond them: strict 5-minute TTL with roster-drop behavior, failure codes (MESH-OFF, MESH-BAD-INPUT), mutation gate (confirm=true vs dry_run=true), counting rules (human bearers count, software_nodes and downloads do not), and the return field presence_ttl_ms=300000. This is unusually rich operational disclosure. No contradiction with the annotations found.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The first three sentences are excellently front-loaded with purpose, routing, and exclusions. But the remainder is one dense stream of telegraphic clauses ("Downloads are not live. Read-only suite-presence is ON by default." ...), and the ambiguous "Read-only suite-presence is ON by default" line could momentarily misread as the tool being read-only. Every clause carries information, but the lack of structure makes it harder to parse than necessary.

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?

For a complex mutation tool with 6 parameters, a mutation gate, three error codes, and classification rules, the description covers call conditions, exclusions, failure modes, return values, and TTL semantics almost exhaustively. The output schema covers the return shape, so the description need not repeat it. Only minor gaps remain (duplicate node_id behavior, reversibility via mesh_leave), which is negligible against this coverage.

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 baseline is 3; the schema already documents required-ness, enums, and node_id pattern. The description adds meaningful gate semantics (confirm/dry_run interplay) and presence-to-count meaning. However, it mentions kind, plane, and bearer as if they were settable parameters, yet none exist in the schema and additionalProperties:false would reject them — a genuine description/schema mismatch that could mislead an agent.

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?

"Register one product node into the QNM rollup" gives a specific verb, resource, and scope, and the qualifier "first presence, not a TTL refresh" sharply differentiates it from mesh_heartbeat. The description also names the siblings it is not (mesh_nodes, mesh_enable, runtime_session_open), so an agent can disambiguate without opening any other schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit when-to-use: "Use this when transmission radios are LIVE and a catalog product should appear in live/locked/isolated counts." Exclusions are equally explicit: "Do not use it for refreshing an existing node, reading the roster, enabling radios, or opening an account session" with four named alternatives. Nothing is left to inference.

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