Skip to main content
Glama
Mfrostbutter

fusion-cad-mcp

by Mfrostbutter

audit_feature_health

Audit the entire feature tree for broken or warning features after any sketch, parameter, or feature edit, returning health state summaries and problematic feature details.

Instructions

Sweep the feature tree (root + every sub-component) and report features whose healthState != 0.

Call this after ANY tool that edits sketch geometry, user parameters, or features. If summary.failed > 0 (state 2 or 3) or summary.warning > 0 (state 1), the BREP may look healthy via the API while Fusion's UI shows a stale cached display. See gotchas G10/G11.

Args: component_name: Restrict the audit to features in this component (still recurses into its sub-components). Default: root + all. include_healthy: Include healthy features (state 0) in the features list. Default False — only broken features are returned.

Returns envelope.result = { ok, summary: {total, healthy, warning, failed}, features: [{path, component, name, classType, healthState, healthLabel, isSuppressed, errorOrWarningMessage}, ...] }

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
component_nameNo
include_healthyNo
Behavior5/5

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

There are no annotations, but the description carries the full behavioral burden well. It states the traversal behavior, default exclusion of healthy features, what is returned in the envelope, and why the health state might not match the API/BREP appearance.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every sentence earns its place: purpose, usage trigger, gotcha, parameters, and return envelope are structured and front-loaded. No filler or redundancy.

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

Completeness5/5

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

Even without an output schema, the description gives the exact return envelope, summary counters, and per-feature fields. It also ties the tool to the broader edit-verify workflow, so an agent can reliably decide when and how to invoke it.

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%, but the description fully compensates: component_name is explained as restricting to a component while still recursing, and include_healthy is explained as including state 0 features or defaulting to broken-features-only.

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 identifies a specific verb-resource pair: sweep the feature tree and report features whose healthState != 0. It distinguishes this as a diagnostic/audit tool, not an editing or transform tool.

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?

It explicitly states when to call it: after ANY tool that edits sketch geometry, user parameters, or features. It also gives a concrete decision rule based on summary.failed > 0 or summary.warning > 0, including a real-world gotcha about stale Fusion UI cache.

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/Mfrostbutter/fusion-cad-mcp'

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