Skip to main content
Glama

get_hda_section_content

Retrieve the content of a specific section within a Houdini Digital Asset definition by providing the node path and section name.

Instructions

Read the content of a specific section in an HDA definition.

Args: ctx: MCP context. node_path: Node path. section_name: Section name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
node_pathYes
section_nameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full disclosure burden. 'Read' implies a non-destructive operation, which is useful, but nothing is said about error behavior (invalid section name, non-HDA node), return format, or whether the tool causes any cooking or network side effects. The disclosure is minimal.

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 purpose sentence is front-loaded and economical. The Args block is largely redundant with the input schema, but it is compact and follows a standard docstring pattern, so it does not bloat the definition. No wasted prose.

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?

With no annotations, no output schema, and 0% schema description coverage, the description is the only source of guidance, and it is thin. An agent would not know what an HDA 'section' is, what node_path format is expected, what the tool returns, or how failures surface. For a tool that is not inherently complex, it still leaves too much unspecified.

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 for missing parameter meaning. The Args block lists ctx, node_path, and section_name, but the glosses 'Node path' and 'Section name' merely restate the parameter names and add no format, example, or domain context. The only genuine addition is identifying ctx as MCP context, which is trivial.

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 and resource: 'Read the content of a specific section in an HDA definition.' The word 'specific' signals that the caller must identify which section, and it implicitly contrasts with siblings like get_hda_sections (listing sections) and set_hda_section_content (writing sections). It is clear but does not explicitly name the alternatives.

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?

No guidance is given about when to use this tool versus its siblings. There is no mention of get_hda_sections for enumerating available sections, no note about prerequisites (e.g., node must be an installed HDA), and no exclusions or alternative routing. The usage context is only implied by the phrase 'specific section.'

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