Skip to main content
Glama

get_env_variable

Fetch the value of a Houdini environment variable by its name. Resolve configuration settings for Houdini scenes or processes.

Instructions

Get a Houdini environment variable value.

Args: var_name: Name of the environment variable.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
var_nameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. 'Get a value' conveys a read-only operation, which is useful, but it does not disclose behavior when the variable is unset, whether it returns null/empty string, or any side effects. For a simple getter this is acceptable but not fully transparent.

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 extremely concise, front-loads the purpose, and includes only a minimal Args section. Every word contributes meaning and there is no repetition or filler.

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?

For a tool with one parameter and no output schema or annotations, the description is functionally usable but thin. It does not explain return formatting, error behavior, or where the environment variable is resolved, leaving minor gaps in contextual completeness.

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%, but the description adds a short semantic definition: 'var_name: Name of the environment variable.' This clarifies the parameter's meaning beyond the bare schema title, though it lacks examples, allowed values, or format expectations.

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 clearly states the action ('Get') and the resource ('Houdini environment variable value'), which directly conveys the tool's purpose. It is distinct from most sibling getters because it specifically targets environment variables, though it does not explicitly contrast itself with a sibling.

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 about when to use this tool versus alternatives such as get_parameter, execute_hscript, or get_context_info. The description only states what it does, leaving the agent to infer appropriate usage from context.

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