Skip to main content
Glama
rsp2k
by rsp2k

object_storage_find_by_region

Locate all Object Storage instances by region code. Enter a region like 'ewr' or 'lax' to retrieve a list of matching instances.

Instructions

Find all Object Storage instances in a specific region.

Args: region: Region code (e.g., "ewr", "lax", "fra")

Returns: List of Object Storage instances in the specified region

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
regionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It states that the operation returns a list of instances, implying a read-only lookup, but does not mention pagination, ordering, or behavior when a region code is invalid.

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 compact and front-loaded, with a clear one-sentence purpose followed by Args and Returns sections. Every line adds useful information with no filler.

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 one-parameter lookup with an output schema present, the description covers purpose, parameter meaning, and return type. Minor gaps remain around valid region codes and pagination, but nothing that critically blocks a call.

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?

The schema provides only a bare string for 'region' with zero coverage, so the description must compensate. It adds the key clarification that region is a region code and gives concrete examples ('ewr', 'lax', 'fra'), though it does not enumerate all valid codes or point to a source for them.

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?

Begins with a specific verb+resource: 'Find all Object Storage instances in a specific region.' The qualifier 'by region' distinguishes it from sibling object_storage_get and object_storage_list_clusters, so an agent can infer what it does without opening the 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?

The description makes the context clear: use it to find Object Storage instances in a specific region. However, it does not explicitly say when to prefer this over alternatives such as object_storage_get or object_storage_list_clusters, nor give any exclusion criteria.

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