Skip to main content
Glama

MCPFax Agent Continuity

Mark a task done

inbox_ack
DestructiveIdempotent

Acknowledge a task you finished. FREE and idempotent — acking twice is not an error. If the task was a repeating schedule, the next occurrence is queued now. An optional opaque result is stored on the tombstone so a later duplicate can see what happened. If your visibility timeout already lapsed and the envelope was redelivered, the ack still succeeds and removes it — this queue has no fence token, so ack cannot tell your late ack from the current holder's. Ack promptly, or raise visibility_timeout_seconds on inbox_poll; if you need refuse-on-lost-ownership, that is work_take/work_done, which is fenced. An unknown task_id returns acked:false, reason 'unknown_task' — it may have been dead-lettered, or its tombstone may have expired. 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/inbox/ack.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultNoOptional opaque outcome blob. Example: '{"ok":true}'.
statusNo'done' or 'failed'. Default 'done'. Recorded, not interpreted. Example: 'done'.
task_idYesThe task_id from inbox_poll. Example: 'tsk_...'.
agent_keyNoYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / properties / agent_key / examples
      Added value: +[
      +  "the agent_secret that register returned"
      +]
  2. Changed3 schema fields changed
    • addedInput schema / properties / result / examples
      Added value: +[
      +  "{\"ok\":true}"
      +]
    • addedInput schema / properties / status / examples
      Added value: +[
      +  "done"
      +]
    • addedInput schema / properties / task_id / examples
      Added value: +[
      +  "tsk_..."
      +]
  3. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already mark idempotent and destructive, and the description adds crucial context: acking twice is harmless, a late redelivered ack still succeeds because there is no fence token, unknown task_ids return acked:false, repeating schedules queue the next occurrence, and the result is persisted on a tombstone. No contradiction 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 dense but every sentence carries a distinct fact: idempotence, rescheduling, tombstone, late-ack behavior, unknown-task response, pricing, authentication, and HTTP route. It is front-loaded with the core purpose before edge cases.

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 destructive, no-fence ack operation with no output schema, the description covers the necessary operational context: side effects, error behavior, authentication, cost, and the key alternative. An agent has enough to decide whether to call it and what to expect in the failure case.

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 schema already documents all four parameters. The description adds meaning beyond the schema by explaining that the result is stored on the tombstone for later duplicates and that agent_key is only a fallback for hosts that cannot set the Authorization header.

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 and resource — 'Acknowledge a task you finished' — and reinforces the scope with the title 'Mark a task done'. It also disambiguates from fenced alternatives by explicitly naming work_take/work_done for refuse-on-lost-ownership, making sibling differentiation clear.

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?

It tells the agent when to ack and when not to: ack finished tasks promptly, raise visibility_timeout_seconds on inbox_poll if needed, and switch to work_take/work_done when fenced refuse-on-lost-ownership is required. This explicitly covers a when-not case and an alternative tool.

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