Skip to main content
Glama

Delete Object Storage bucket

delete_bucket
Destructive

Permanently delete an empty S3 bucket in ArvanCloud object storage to clean up unused resources after all objects are removed.

Instructions

[DESTRUCTIVE] S3 DeleteBucket (FA SDK delete-bucket). Bucket must be empty per product docs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bucketYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.3

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true, readOnlyHint=false and openWorldHint=true, so the danger profile is carried by structured data. The description adds a genuinely useful operational constraint (bucket must be empty), but says nothing about irreversibility, required permissions, or the error surfaced on a non-empty bucket.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short, front-loaded sentences with the destructive flag first and the precondition second. The 'FA SDK delete-bucket' parenthetical is mildly redundant with the tool name but costs little.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter destructive tool with full annotation coverage and no output schema, the precondition note is the key addition. Still missing are failure behavior (non-empty bucket), confirmation/permission expectations, and any hint about the identifier the agent must supply.

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?

Only one parameter and schema description coverage is 0%, so the description must compensate and it does not — no indication of the identifier format, naming rules, or whether it is a name or an ID. The parameter name 'bucket' is self-evident, keeping this at the minimum-viable baseline.

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?

States a specific verb and resource ('Delete Object Storage bucket') and pins the underlying operation ('S3 DeleteBucket'). The bucket-level scope cleanly separates it from the object-level sibling delete_object without the reader needing either schema.

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?

It gives a precondition ('Bucket must be empty per product docs'), which implies when the call will succeed, but offers no explicit when-to-use vs alternatives guidance and never points at delete_object for the empty-the-bucket-first workflow.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools