Skip to main content
Glama

sample_geometry

Sample evenly distributed points from a Houdini SOP node's geometry by specifying node path, sample count, and optional seed.

Instructions

Sample evenly distributed points from a SOP node's geometry.

Args: node_path: Node path. sample_count: Number of points to sample. seed: Random seed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seedNo
node_pathYes
sample_countNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It simply states the action without any detail on side effects, prerequisites (e.g., node existence or cooking behavior), or read-only guarantees. The description adds minimal insight beyond the name.

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 compact and well-structured: a one-sentence purpose followed by a clean Args list. There is no redundant prose, and the essential information is front-loaded. It could benefit from a slightly more formal formatting, but it is concise and easy to parse.

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 simple sampling tool with only three parameters, the description covers the basics. However, it omits any mention of return value/format (no output schema exists) and does not clarify edge cases (e.g., behavior when node_path is invalid or sample_count exceeds geometry size). This is adequate but not thorough.

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?

The Args section gives one-line meanings for each parameter, which adds some value over the schema (which has zero descriptions). However, the explanations are terse—'Node path' and 'Number of points'—leaving questions about format, units, or constraints unanswered.

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 an action ('Sample evenly distributed points') on a specific resource ('a SOP node's geometry'). It is distinguishable from sibling tools like get_points or get_geometry_info by its emphasis on even distribution, though it does not explicitly name 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 provided on when to use this tool versus alternatives. There is no mention of preferred contexts, limitations, or exclusions. An agent would have to infer when sampling is appropriate without help from the description.

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