Skip to main content
Glama

MCPFax Agent Continuity

Give a task back

inbox_nack
Idempotent

Explicitly return a claimed task to the queue instead of waiting for its visibility timeout, optionally deferring it. FREE. Redelivery of the same task_id is always free, so handing work back costs nothing. 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/nack.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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.
delay_secondsNoDefer this many seconds before it is visible again. Default 0. Example: '600'.

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. Changed2 schema fields changed
    • addedInput schema / properties / delay_seconds / examples
      Added value: +[
      +  600
      +]
    • addedInput schema / properties / task_id / examples
      Added value: +[
      +  "tsk_..."
      +]
  3. First observed

TDQS

A4.3/5.0
Behavior5/5

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

Beyond the annotations, the description adds meaningful behavioral context: the tool is free, redelivery of the same task_id is always free, and it explains authentication requirements and the equivalent HTTP route. This goes well beyond what the annotations alone convey.

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 main action is front-loaded and the essential details are present, but 'FREE' and the no-charge point are repeated multiple times, adding redundancy. The authentication and route details are useful but could be tightened without losing value.

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 tool with three parameters, one required parameter, and no output schema, the description provides sufficient behavioral, authentication, cost, and idempotency context. An agent should be able to decide when to call it and how to invoke it correctly.

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 description coverage is 100%, so the input schema already fully documents task_id, agent_key, and delay_seconds. The description reinforces the overall purpose but does not add meaningful parameter-level detail beyond the schema.

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 states a specific verb and resource: 'Explicitly return a claimed task to the queue'. It also clearly distinguishes the behavior from waiting for the visibility timeout, which makes the tool's role as a nack operation unambiguous.

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?

The description gives clear context for when to use the tool: when you want to hand a claimed task back immediately rather than waiting for the timeout. It does not explicitly name alternative siblings like inbox_ack or work_fail, but the usage context is strong enough for an agent to select appropriately.

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