Skip to main content
Glama

catia_list_faces

Read-only

List faces of visible solid geometry in the active CATIA document, providing centroid, area, and outward normal for each face. Use stable face@x,y,z tokens to reference faces reliably even after model changes.

Instructions

List the faces of the visible solid geometry in the active document, with the index token (face#n), the centre of gravity to aim proximity tokens at, the area, and the outward normal for planar faces. Indices change whenever the model changes; centroids do not, so prefer 'face@x,y,z' tokens for anything you will reference more than once.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number to return.
include_metricsNoMeasure each element (centroid, area or length). Accurate and usually what you want, but one measurement call each - turn it off on very large models.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and destructiveHint, and the description adds beyond that: it discloses that indices change whenever the model changes while centroids remain stable, which affects how outputs should be used. It also scopes the operation to visible solid geometry and clarifies normals only apply to planar faces. This is meaningful behavioral context without contradicting annotations.

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?

Two sentences, front-loaded with the operation and output fields, then a focused stability note that directly informs usage. No filler or repetition of schema details.

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 no output schema, the description enumerates the returned face data (index token, centroid, area, normal) and gives practical token-stability guidance. It could add return format/pagination details or clarify behavior when no visible solid geometry exists, but for a simple read-only list tool with well-covered parameters this is nearly complete.

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 input schema covers all parameters at 100% with adequate descriptions (limit maximum and include_metrics performance cost), so the description need not repeat them. The description does not add parameter-level semantics beyond the schema; its mention of centre of gravity/area/normal describes output content rather than parameter behavior.

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?

States a specific verb and resource: 'List the faces of the visible solid geometry in the active document.' This distinguishes it from sibling tools like catia_list_edges and catia_list_vertices by naming the resource type, and includes output details (index token, centroid, area, normal) that make its purpose concrete.

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

Usage Guidelines4/5

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

Gives clear context: it targets faces of visible solid geometry in the active document, and the second sentence tells when to use face@x,y,z tokens over face#n ('anything you will reference more than once'). It does not explicitly name alternatives or exclusions, so it falls short of a 5 but provides useful selection guidance.

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