Skip to main content
Glama
wjc9011
by wjc9011

geometry_create_box_selection

Create a named Box selection to target geometry entities by coordinate range, using entity dimension and condition to select boundaries or faces for meshing, physics, or material assignment.

Instructions

Create a named Box selection for geometry entities by position.

For a 2D model, use entity_dimension=1 to select boundaries. For a 3D model, use entity_dimension=2 to select boundary faces.

Args: selection_name: Stable selection tag x_min: Minimum x-coordinate expression x_max: Maximum x-coordinate expression y_min: Minimum y-coordinate expression y_max: Maximum y-coordinate expression z_min: Optional minimum z-coordinate expression z_max: Optional maximum z-coordinate expression entity_dimension: Entity dimension (default: 1) condition: Box condition, usually "intersects" or "inside" geometry_name: Geometry sequence tag (default: first geometry) component_name: Component name (default: "comp1") model_name: Model name (default: current model)

Returns: Created named selection and matched entity numbers when available

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
x_maxYes
x_minYes
y_maxYes
y_minYes
z_maxNo
z_minNo
conditionNointersects
model_nameNo
geometry_nameNo
component_nameNocomp1
selection_nameYes
entity_dimensionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations exist, so the description carries the full behavioral burden. It discloses defaults for optional parameters and notes the return ('Created named selection and matched entity numbers when available'), which helps. It still omits whether the selection persists, permission/model-state prerequisites, or failure behavior for a mutation tool, keeping it at a modest 3.

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 is front-loaded, followed by a well-organized Args list and a Returns note. Each line contributes, though listing parameters as a separate block is somewhat verbose for what the schema could have carried.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 12-parameter tool with 0% schema coverage and no output schema, the description covers parameter meaning and the return value adequately. The gaps are tool-selection guidance and mutation/error semantics rather than missing parameter documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% - only bare titles exist - so the description must compensate, and it does: the Args block documents all 12 parameters, including coordinate-expression semantics, 'Box condition, usually "intersects" or "inside"', and defaults for geometry_name, component_name, and model_name. This adds substantial meaning beyond the schema.

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: 'Create a named Box selection for geometry entities by position.' This is clear and distinguishable from siblings like geometry_create_side_selections. It stops short of explicitly contrasting itself with those alternatives, so it earns a 4 rather than a 5.

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?

It supplies conditional guidance for entity_dimension (use 1 for 2D boundaries, 2 for 3D boundary faces), which is genuinely useful usage context. However, it never says when to choose this tool over alternatives such as geometry_create_side_selections or geometry_boundary_selection, so guidance is only implied at the tool-selection level.

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