Skip to main content
Glama

nx_save_part_as

Save the current Siemens NX part to a new workspace-relative path without overwriting the original. Specify a .prt path to create a copy safely.

Instructions

Save the current part to a new workspace-relative .prt path. Never overwrites.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior2/5

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

With no annotations, the description must fully disclose behavior, but it only states 'never overwrites.' It omits other side effects such as whether the active part changes, whether directories are created, and what happens if the path exists. This is a notable gap for a mutation tool.

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?

A single sentence with no redundancy. The key constraint is placed immediately after the action, making it easy to parse and remember.

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

Completeness3/5

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

For a simple one-parameter operation, the description covers the purpose and safety constraint, but it lacks information about return values, error behavior, and side effects on the active part. Given the absence of annotations, additional detail would improve completeness.

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 description adds meaningful context to the single 'path' parameter: it must be workspace-relative, have a .prt extension, and must not already exist (since it never overwrites). This goes well beyond the schema's bare string type.

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 the action (save current part), the destination (workspace-relative .prt path), and a defining constraint (never overwrites). It is specific enough to distinguish from creation and export operations among the sibling tools.

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 when to use it (saving a copy to a new path) but provides no explicit guidance on alternatives or when not to use it. There is no mention of preferring this over nx_export_step or nx_create_part for specific scenarios.

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