Skip to main content
Glama

Delete an agent-inbox lease

ausca_agent_inbox_delete
DestructiveIdempotent

Idempotently stop inbound visibility and delete retained message and attachment content for one inbox lease.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inbox_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
inboxYes
statusYes

TDQS

A4/5.0
Behavior4/5

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

Annotations already carry readOnlyHint=false, idempotentHint=true, and destructiveHint=true, so the bar is lower. The description adds genuine context beyond those flags: it specifies exactly what gets destroyed ('retained message and attachment content') and the observable side effect ('stop inbound visibility'), and 'idempotently' aligns with the idempotency hint. No contradiction with annotations. Minor gap: permanence/recoverability of the deletion is not stated.

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?

One 16-word sentence, front-loaded with the action ('Idempotently stop... delete...'), with no filler. Every element earns its place: idempotency, the visibility side effect, the destroyed content, and the single-lease scope. The description is appropriately sized for a one-parameter destructive operation.

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?

An output schema exists so return values are documented elsewhere; annotations cover the safety profile (destructive, not read-only, idempotent); the description adds scope and the exact effects of the call. For a 1-parameter delete tool this is nearly complete. The only notable omission is whether the deletion is permanent/recoverable and whether the lease ID becomes invalid afterward.

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 0%, so the description should compensate, but it only ties the parameter to the operation via 'one inbox lease' without explaining how to obtain a valid inbox_id. That said, the single parameter is self-named and tightly constrained by the schema's pattern (^inb_[A-Za-z0-9_-]{22,64}$), so the practical risk of misusing it is low.

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 names a specific verb-resource pair — 'delete... one inbox lease' — and goes beyond a generic delete by stating the concrete effects: 'stop inbound visibility and delete retained message and attachment content.' This clearly differentiates it from the sibling inbox tools (attachment, messages, read, status), which are non-destructive operations on the same lease.

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?

Usage context is implied by the purpose ('when you need to retire a lease and purge its content'), and the idempotency statement signals it is safe to retry. However, there is no explicit when-to-use versus when-not-to-use guidance, no mention of prerequisites, and no pointer to non-destructive alternatives like ausca_agent_inbox_read or ausca_agent_inbox_status.

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

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: inbox list/read/delete/attachment/status, browser connect/close/status, invocation get/cancel/prepare, and offer search/get. Although messages vs read and status could appear similar, the descriptions clearly separate bulk summaries, single-message reads, and lease state. There is no meaningful overlap between any two tools.

Naming Consistency4/5

All names share the uniform ausca_ lowercase snake_case prefix and are grouped by functional area, making the overall pattern easy to predict. However, the final segment alternates between verb actions (delete, read, connect, cancel, prepare) and noun resources (attachment, messages, status), so it is not a strict verb_noun convention. This is a minor inconsistency rather than chaotic naming.

Tool Count5/5

Thirteen tools cover three distinct functional areas, each with a focused set of operations and no obvious redundancy. This sits comfortably in the ideal 3–15 range and every tool appears necessary for the server's purpose.

Completeness4/5

The inbox lifecycle is well covered with list/read/attachment/status/delete, and invocation/offer areas support the key operations of search, resolve, prepare, get, and cancel. Creating a browser session or actually submitting an invocation appears intentionally externalized to the transport or offer terms, so there are only minor gaps rather than dead ends.

Resources