Skip to main content
Glama
mystify59

ansys-mechanical-mcp

by mystify59

generate_mesh

Generates the finite element mesh for the active ANSYS Mechanical model, preparing it for analysis.

Instructions

[MODIFIES MODEL] Generate the Mechanical mesh.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3/5.0
Behavior2/5

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

The description includes the '[MODIFIES MODEL]' tag, which signals mutation, but with no annotations the description carries the full burden. It does not disclose whether an existing mesh is overwritten, whether the operation is reversible, or what side effects may occur.

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 very short and front-loads the key mutation signal before the action statement. It is appropriately sized for a tool with no parameters, though it could still include a little more context without becoming bloated.

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?

Even though an output schema existsched, the description is incomplete for a model-modifying operation. It omits prerequisites, the exact effect on existing mesh data, and any cautionary context, which an agent would need to invoke and interpret this tool safely.

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

Parameters4/5

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

The input schema has zero parametersholistic, so there are no parameter semantics for the description to clarify. The baseline of 4 for zero-parameter tools applies.

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 clear verb ('Generate') and resource ('the Mechanical mesh'), so an agent knows the core action. It does not, however, distinguish this from related sibling tools such as get_mesh_statistics or set_mesh_size.

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 run mesh generation, what prerequisites are needed (e.g., geometry must exist), or when to prefer a sibling tool such as get_mesh_statistics instead. The usage context is entirely absent.

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