Skip to main content
Glama

Gkmex Crane Inventory

list_cranes

Read-onlyIdempotent

List every currently published Gkmex crane.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNo
brandNo
limitNo
cursorNo
offsetNo

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already cover read-only and idempotent behavior. The description adds the meaningful scoping detail that only currently published cranes are returned, implying the result set can change over time, but it does not disclose pagination behavior, ordering, or response structure.

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 front-loaded sentence with no filler or repetition. It communicates the core purpose immediately and every word earns 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?

With no output schema and five optional parameters, the description is too sparse to fully support correct invocation. It fails to mention that type and brand act as filters or that limit/cursor/offset control pagination, leaving important behavioral gaps for the agent.

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%, yet the description adds no information about the five optional parameters: type, brand, limit, cursor, and offset. An agent must infer filtering and pagination semantics entirely from parameter names and schema constraints.

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?

The description clearly states the verb 'List' and the resource 'currently published Gkmex cranes', making the tool's scope unambiguous. The singular/plural distinction from get_crane and compare_cranes helps an agent select this tool for bulk listing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrasing 'every currently published' conveys that this tool is for retrieving the full set of published cranes, not a single crane or a comparison. However, it does not explicitly name alternatives or state when not to use it, so it stops short of full routing guidance.

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

A4.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: list all published cranes, retrieve one by public ID, and compare a selected subset. There is no overlap in what the tools do.

Naming Consistency5/5

All tool names follow the consistent verb_noun pattern: list_cranes, get_crane, compare_cranes. Naming is predictable and uniform.

Tool Count5/5

three toops is a well-scoped set for a read-oriented inventory server. Each tool serves a core need and there are no redundant or unnecessary entries.

Completeness5/5

For a server explicitly focused on viewing and comparing currently published cranes, list/get/compare provide full coverage. No CRUD operations are implied by the domain, so no gap exists.