Skip to main content
Glama

Create Object Storage bucket

create_bucket

Create a new S3 bucket in ArvanCloud object storage with optional private or public-read ACL.

Instructions

[WRITE] S3 CreateBucket. Official API Usage curl + SDK create-bucket docs. ACL may be private|public-read per SDK sample.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
aclNo
bucketYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.3

TDQS

C2.6/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=false and openWorldHint=true, so the '[WRITE]' prefix merely duplicates structured data. Nothing is said about global bucket-name uniqueness, required permissions, or side effects of creation, which is where added value would lie for a create tool.

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?

Very short and front-loaded with the '[WRITE] S3 CreateBucket' core, but the middle sentence about official docs is filler that doesn't earn its place.

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

Completeness2/5

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

For a write tool with no output schema and minimal annotations, the description omits bucket naming constraints, uniqueness semantics, and permission requirements an agent needs to invoke it correctly. It is materially under-specified.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must carry the parameter burden, yet it only repeats the ACL enum values (private|public-read) already present in the schema. The required 'bucket' parameter gets no naming/format constraints at all.

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?

States a specific verb+resource ('S3 CreateBucket') and flags it as a write, which is enough to separate it from list_buckets, head_bucket, and delete_bucket. However, the trailing references to 'curl + SDK docs' add no purpose information and no explicit sibling differentiation.

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?

No indication of when to use this versus list_buckets/put_object_text or any prerequisites, region choice, or naming rules. The only implied usage ('S3 CreateBucket') is the tool's own name restated.

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