Skip to main content
Glama

IronShard Object Storage Sandbox

Get Object Metadata

get_object_metadata
Read-onlyIdempotent

Return an object's size, timestamps, ETag, content type, metadata, and tags.

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
etagNoStorage entity tag; it is not always a content checksum.
tagsNo
metadataNoUser-defined object metadata.
object_keyYesComplete object key, including path-like prefixes.
size_bytesYesObject size in bytes.
version_idNo
bucket_nameYesBucket to operate on.
content_typeNo
last_modifiedNoUTC time of the most recent modification.

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.8/5.0
Behavior4/5

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

Annotations already cover the read-only, idempotent, non-destructive safety profile. The description adds value by specifying exactly which metadata attributes are returned, such as size, timestamps, ETag, content type, and tags. It does not address error behavior like missing objects, but this is largely mitigated by the output schema and annotations.

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?

A single, well-structured sentence with no filler. The main purpose is front-loaded and every phrase contributes useful information.

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 read-only metadata lookup, the description, schema, annotations, and output schema together provide sufficient context. Missing error-handling details are a minor gap, but the tool is otherwise well-specified.

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 all three parameters are already documented in the input schema. The description does not add parameter-level detail, so a baseline score of 3 is appropriate.

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 uses a specific verb ('Return') and names the exact resource ('an object') plus the metadata fields returned. It clearly identifies what the tool does, though it does not explicitly differentiate itself from siblings like download_object or get_bucket.

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?

The intended use is implied: call this when you need an object's metadata rather than its contents. No explicit guidance is given about when to prefer this over download_object, list_objects, or get_bucket, leaving selection partly to inference.

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