Skip to main content
Glama
Deraiven
by Deraiven

zadig_environment_create

Create a Zadig environment with a dry run by default and require explicit confirmation before applying changes, ensuring safe environment provisioning.

Instructions

Create a Zadig environment. Defaults to dry_run=true and requires confirm=true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNo
dry_runNo
env_nameNo
productionNo
environmentYes
project_keyNo
allow_redactedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations provided, the description carries the full behavioral burden. It usefully discloses the dry-run default and the confirm requirement, which are important safety-related behaviors for a create operation. It does not mention side effects, idempotency, required permissions, or what confirmation failure looks like, so transparency is partial.

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

Conciseness4/5

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

The description is two short sentences and front-loads the core purpose before giving the invocation-critical defaults. Every sentence earns its place and there is no fluff. It is concise though arguably too terse given the parameter complexity.

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?

The tool has seven parameters, a required nested environment object, and no schema-level parameter descriptions. The single-sentence description does not provide enough context to correctly construct the environment object or choose values for project_key, production, and allow_redacted. The output schema reduces the need to describe return values, but the input side remains under-specified.

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%, so the description must compensate with parameter meaning, but it only touches dry_run and confirm. The other parameters — env_name, production, project_key, allow_redacted, and the nested environment object — are neither explained nor connected to the create workflow. This is a significant gap given the tool has seven parameters.

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 opens with a specific verb and resource: 'Create a Zadig environment.' This clearly identifies the tool's action. It does not explicitly distinguish the create operation from the similar environment_apply/update siblings, so it is clear but lacks sibling differentiation.

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

Usage Guidelines3/5

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

The description provides operational guidance by stating 'Defaults to dry_run=true and requires confirm=true.' This implies the agent must set confirm to true for an actual creation to occur. However, it never says when to prefer this tool over alternatives like zadig_environment_apply or update, so usage context is partially implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.