Skip to main content
Glama
deanchong
by deanchong

get_test_environment

Read-onlyIdempotent

Retrieve a specific test environment by its unique ID. Access its configuration and details for test execution.

Instructions

Get a specific environment. Retrieve a specific test environment using its unique identifier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/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 and idempotency profile is fully covered structurally. The description adds nothing beyond that – no error behavior for an unknown ID, no permission notes, no return-format context – so it earns little credit over the annotations.

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

Conciseness3/5

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

Two sentences where the second largely restates the first ('Get a specific environment' vs 'Retrieve a specific test environment using its unique identifier'). It is short and front-loaded, but the redundancy means not every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a simple single-resource getter with a trivial nested schema and no output schema, so the description need not explain return values. Still, for a tool embedded in a very large sibling set it should say more about where the identifier comes from and how this differs from the collection endpoint.

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 0% and there is one nested required parameter, but the description's phrase 'using its unique identifier' at least tells the agent the parameter is an ID. It adds only marginal meaning beyond the schema's field naming and does not explain the nested 'path' object structure.

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 ('Get'/'Retrieve') and resource ('test environment') and signals it returns a single item by unique identifier, which implicitly distinguishes it from the sibling get_test_environment_collection. However, it never names that collection sibling or other related tools (put/delete_test_environment), so differentiation is left to inference.

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 get_test_environment_collection or the other get_* siblings, and no prerequisites (e.g., needing an ID obtained from the collection) are stated. Usage is only implied by the word 'specific'.

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