Skip to main content
Glama

IronShard Object Storage Sandbox

Delete Object

delete_object
Destructive

Delete an object; versioned buckets may retain older versions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
object_keyYesComplete object key, including path-like prefixes.
bucket_nameYesBucket to operate on.
bucket_tokenYesSecret bearer token returned with the public bucket.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
deletedYesTrue when the object was deleted.
object_keyYesComplete object key, including path-like prefixes.
version_idNo
bucket_nameYesBucket to operate on.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • changedInput schema / properties / object_key / examples
      Previous value: -[
      -  "reports/summary.json"
      -]New value: +[
      +  "data.parquet",
      +  "reports/summary.json"
      +]
    • changedOutput schema / properties / object_key / examples
      Previous value: -[
      -  "reports/summary.json"
      -]New value: +[
      +  "data.parquet",
      +  "reports/summary.json"
      +]
  2. First observed

TDQS

A3.6/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true, and the description aligns with that. It adds useful context beyond the annotation by noting that versioned buckets may retain older versions, which helps the agent understand the scope of destruction.

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 a single sentence with no filler. The main action is front-loaded, and the important versioning caveat is appended concisely.

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 simple delete operation, the description is largely complete: the schema covers all required parameters, annotations cover destructiveness, and an output schema exists. The versioning caveat adds important edge-case context, though it could also mention permanent deletion for unversioned buckets or authorization requirements more explicitly.

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 parameters are fully documented by the input schema itself. The description does not add any meaning about how parameters relate to behavior, which meets the baseline but does not exceed it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/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: deleting an object. It is clear and unambiguous, though it does not explicitly differentiate from sibling tools like remove or upload operations, so it stops short of a perfect score.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool versus alternatives, nor does it mention prerequisites, conditions, or exclusions. The only contextual note is about versioned buckets retaining versions, which is behavioral, not usage-oriented.

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