Skip to main content
Glama

Read a region of cubes

get_region

List the exact cubes inside an axis-aligned box.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dYes
hNo
wYes
xYes
yNo
zYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'List,' which hints at a non-destructive read, but discloses nothing about return format, ordering, coordinate edge cases, or performance.

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 zero filler, front-loaded with the verb 'List.' Every word earns its place and the sentence communicates the tool's essential function immediately.

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?

Given 6 parameters, 0% schema description coverage, no annotations, and no output schema, the one-line description leaves too much unspecified: parameter semantics, required-vs-optional meaning, and return shape. An agent would struggle to construct a correct call without additional external context.

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% for 6 integer parameters, and the description must compensate. It gives the geometric context of an 'axis-aligned box' but does not explain how x, z, w, d, y, h map to coordinates and dimensions, nor which parameters are optional beyond what the required list implies.

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 ('List') and resource ('cubes') with a clear scope ('inside an axis-aligned box'), so an agent can recognize it as a read-style region query. However, it does not explicitly differentiate itself from the sibling tool 'get_observable', even though the resource and operation make the purpose reasonably distinct.

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?

There is no guidance on when to use this tool versus the sibling 'get_observable' and no mention of exclusions or preconditions. The description only implies a use case (querying cubes in a box) without any decision context.

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.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a distinct purpose: querying single cubes, regions, overviews, stats, and performing single or bulk modifications. Even though build overlaps with individual place/remove operations, its batch nature differentiates it clearly.

Naming Consistency5/5

All tools follow a consistent lowercase_with_underscores naming convention. Verbs clearly indicate actions (get, place, remove, clear, fill, build), making the toolset predictable and easy to navigate.

Tool Count5/5

With 9 tools, the set is well-scoped for a cube world manipulation server. It provides both granular operations (place_cube, remove_cube) and higher-level bulk operations (build, fill_box, clear_mine) without unnecessary redundancy.

Completeness5/5

The toolset covers the full lifecycle of cube manipulation: querying (get_cube, get_region, get_overview, get_world_stats), creating (place_cube, build, fill_box), and deleting (remove_cube, clear_mine). No essential operations for a Minecraft-like environment are missing.