Skip to main content
Glama

MCPFax Agent Continuity

Signal that your part is done

barrier_signal
Idempotent

Report that one participant finished, optionally attaching a payload the joiner will receive. FREE and IDEMPOTENT PER PARTICIPANT — the same participant_id signalling twice counts once and never double-fires the join. The barrier is a single Durable Object, so N simultaneous signals produce exactly one notification. A signal to a join that ALREADY FIRED on min_count is still recorded and reported in barrier_status, but it cannot fire a second notification — the joiner was already told, and was told exactly who was missing. A signal to a join that has TIMED OUT or passed its TTL is REFUSED with signalled:false, reason 'expired': your payload did NOT reach the joiner, so do not assume it did. That barrier_id is not locked — call barrier_create with it to open a new generation of the join. FREE — this tool never charges. Authenticate with Authorization: Bearer , or pass agent_key as an argument if your host cannot set headers. Equivalent HTTP route: POST /v1/barrier/signal.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
payloadNoOptional opaque result for the joiner, <=8192 bytes. Never parsed, indexed or logged. Example: '{"rows":128}'.
agent_keyNoYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
barrier_idYesThe barrier to signal. Example: 'quarterly-rollup-2026q3'.
participant_idYesWho is signalling. <=128 chars, stored in plain text so a timeout can name who is missing. Example: 'region-north'.

TDQS

A4.8/5.0
Behavior5/5

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

Beyond the annotations (idempotentHint=true), the description reveals significant behavioral context: the Durable Object design ensures N simultaneous signals produce exactly one notification; already-fired joins still record the signal but cannot double-fire; expired joins refuse with signalled:false and reason 'expired'; and the tool is free. No contradictions with annotations.

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 long but every section adds value: core action, idempotency, concurrency, edge cases (already-fired, expired), and auth/route. It's front-loaded with the primary verb and uses headers-like caps (FREE, IDEMPOTENT) to highlight key properties. No redundant sentences.

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?

For a complex tool with no output schema, the description covers behavior thoroughly (edge cases, failure modes, and next steps). However, it does not explicitly state the response shape for a successful signal (only references signalled:false in the expiry case), leaving a minor gap in expectations. Overall it's sufficiently complete for most use cases.

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?

Although the input schema covers all 4 parameters (100% coverage), the description adds semantic meaning: it explains that payload is 'what the joiner will receive' and that on expiry the payload will not reach the joiner ('your payload did NOT reach the joiner'), and it ties participant_id to the idempotency behavior. It does not add syntax details but clarifies the lifecycle implications, so it goes beyond the schema baseline of 3.

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 description opens with a specific verb+resource: 'Report that one participant finished, optionally attaching a payload the joiner will receive.' This clearly distinguishes it from sibling tools like barrier_create and barrier_status, which handle creation and status checks respectively. The scope (one participant at a time) is explicit.

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?

Provides explicit when-not and alternative guidance: signals to a timed-out or TTL-passed join are refused with reason 'expired', and in that case the caller should 'call barrier_create with it to open a new generation.' Also notes the idempotency property ('the same participant_id signalling twice counts once'), which informs safe retry behavior. It doesn't explicitly compare with barrier_status, but the guidance is concrete.

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

A4/5.0
Disambiguation5/5

Every tool targets a clearly distinct mechanism—barriers, budgets, checkpoints, claims, heartbeats, inboxes, leases, work queues, etc. Even closely related pairs like claim/complete, work_done/inbox_ack, and barrier_status/work_status are explicitly differentiated in their descriptions, so an agent can reliably select the right tool.

Naming Consistency4/5

The dominant pattern is object_verb (e.g., checkpoint_get, work_push, seen_add, lease_release), which is consistent and readable. A few single-word verbs (claim, complete, send) and noun-only names (resume_packet, retry_state, whoami) break the pattern, but they are few and still intuitive.

Tool Count2/5

With 33 tools, the surface is well beyond the 25-tool threshold for 'too many' and will feel heavy for agents to explore, even though the tools are organized into subdomains. The scope is broad, but the sheer number makes the server less approachable and increases the chance of misselection.

Completeness5/5

The tool set provides thorough lifecycle coverage across its domains: checkpoints get/put, work queue push/take/done/fail/status, inbox poll/ack/nack/schedule, lease acquire/renew/release, barrier create/signal/status, dedup add/check, watermark get/set, retry state, budget check/record, and idempotency claim/complete. There are no obvious dead ends or missing essential operations.

Resources