Skip to main content
Glama

catia_open_document

Open an existing file in CATIA from an absolute path, handling native CATPart, CATProduct, CATDrawing and neutral formats like STP, IGS, STL, MODEL.

Instructions

Open an existing file in CATIA. Handles native documents (.CATPart, .CATProduct, .CATDrawing) and every neutral format CATIA can read directly, such as .stp, .igs, .stl and .model.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path to the file to open.
activateNoBring the document to the front after opening.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already mark readOnlyHint=false, destructiveHint=false, etc. The description adds supported-format context but does not disclose behavioral details like what happens if the file is already open or whether opening modifies the target file. No contradiction with 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 main purpose, followed by a useful format list. No filler or redundancy.

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 simple open operation with only two parameters, all covered by schema descriptions, the description is nearly complete. It does not cover return values or error cases, but no output schema exists and complexity is low.

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?

Schema description coverage is 100%, and the schema already documents both 'path' and 'activate' clearly. The tool description adds no parameter-specific meaning beyond what the schema provides, so baseline 3 applies.

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 ('Open an existing file'), resource ('CATIA'), and lists supported file formats. The wording clearly distinguishes it from creation tools like catia_new_part or catia_new_product.

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?

The description implies usage through 'Open an existing file' and lists format coverage, but it does not explicitly say when to use this over catia_activate_document or how it differs from creating/importing documents. Context is understandable, but exclusions are not stated.

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