Skip to main content
Glama
ab7646

fusion-reconstruct-mcp

by ab7646

check_solid

Determine whether 3D points lie inside or outside a mesh solid to detect hidden voids or steps before filling regions. Use ray-casting to verify assumed solid volumes.

Instructions

For each (x, y, z) point (mm), report whether it's inside the solid or outside it (mesh.contains, ray-casting based).

get_cross_section only ever traces the outer boundary at a given slice

  • it will not notice a fully-enclosed internal cavity that doesn't touch that boundary, and can misreport a shape as constant-cross-section when it actually has a void or a step hidden inside. Before assuming a region is solid (e.g. before extruding a wedge/loft to fill it), spot-check a few points inside that assumed volume with this function. Cross-checking with a second point just off any axis-aligned coordinate is a good idea: a ray fired exactly through a mesh edge/vertex can mis-count and give a wrong answer for that exact point.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pointsYes
file_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses the ray-casting approach, mesh.contains, units in mm, and a concrete known failure mode when a ray passes exactly through a mesh edge/vertex. It could go further by mentioning mesh validity or coordinate system assumptions, but it is substantially transparent.

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 primary purpose is front-loaded in one clear sentence. The second paragraph is longer but contains necessary caveats and usage context. It is economically written with no filler, though it could be slightly tightened.

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?

Given only two parameters, no annotations, and an existing output schema, the description covers the core behavior, units, algorithm, and an important failure mode. The main gaps are file_path semantics and mesh validity requirements; otherwise it is reasonably complete.

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. It adds meaning for 'points' by specifying they are (x, y, z) coordinates in mm, but it does not clarify the file_path parameter at all, nor does it fully specify the expected nesting of point arrays or coordinate frame. This partial compensation is insufficient.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: for each (x, y, z) point, report whether it is inside or outside the solid via mesh.contains / ray-casting. It also distinguishes itself from get_cross_section by explaining that sibling tool only traces the outer boundary, so this tool handles internal cavity checking.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is provided: use this tool before assuming a region is solid, e.g., before extruding or lofting to fill a volume. It also warns against relying on get_cross_section for internal cavities and advises cross-checking with points just off axis-aligned coordinates to avoid ray-edge miscalculations.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ab7646/fusion-reconstruct-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server