Skip to main content
Glama
deanchong
by deanchong

post_test_environment

Destructive

Create a new test environment in TestMonitor with a name and optional description, so you can organize and run test cases against it.

Instructions

Create a environment. Create a new test environment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.3/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=false, destructiveHint=true, idempotentHint=false, and openWorldHint=true, so the safety profile is covered by structured data. The description adds nothing beyond this – no mention of auth requirements, what is created, side effects, or whether duplicate names are allowed.

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?

Two sentences are present but the second merely paraphrases the first ("Create a environment. Create a new test environment."), so the content is redundant rather than efficiently front-loaded. The grammar error also detracts.

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?

For a create/mutation tool with no output schema, nested object parameters, and no annotations explaining the response, the description omits return information, permission requirements, and field usage. An agent cannot confidently invoke it from this description alone.

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% and only one nested body parameter exists. The description does not mention the required "name" field, the optional "description" field, or the maxLength constraints, so it fails to compensate for the schema gap.

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 clear verb+resource ("Create a new test environment"), which is distinguishable from the read sibling get_test_environment. However, the two sentences are pure restatement of each other and the tool name, and it provides no differentiation from put_test_environment or other creation tools.

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 put_test_environment (update) or post_test_case. No prerequisites, no context about what a test environment is or when an agent should create one.

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