Skip to main content
Glama
deanchong
by deanchong

get_test_environment_collection

Read-onlyIdempotent

Retrieve all test environments and apply sorting and pagination to organize results by name, creation date, update date, page, and limit.

Instructions

Get all environments. Retrieve all test environments.

Apply sorting and pagination to organize the results.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, and openWorldHint=true, so the safety profile is covered. The description adds only that sorting and pagination can be applied, without disclosing result shape, pagination defaults, auth requirements, or rate limits; it adds minor value beyond structured fields.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The first two sentences ('Get all environments. Retrieve all test environments.') are redundant restatements of the tool name, so at least one sentence does not earn its place. The second sentence about sorting and pagination is more useful, but the overall structure is inefficient despite being short.

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?

There is no output schema, yet the description does not explain what an environment record contains or what the collection response looks like. It also omits pagination behavior and any relation to get_test_environment, leaving the agent with insufficient context for correct invocation.

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?

The signal reports 0% schema description coverage at the top level, so the description should compensate by explaining the query object and its page, limit, and order parameters. Instead it merely says 'Apply sorting and pagination,' adding no syntax, defaults, maximum values, or meaning beyond the parameter names.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a verb ('Get') and resource ('environments'), but 'Get all environments. Retrieve all test environments.' is mostly a restatement of the tool name. It does not distinguish this collection tool from the sibling get_test_environment, so the agent must rely on naming conventions to tell them apart.

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 alternatives such as get_test_environment, nor any mention of filtering, scoping, or prerequisites. The only usage hint is that sorting and pagination can be applied, which is not a selection guideline.

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