Skip to main content
Glama

nx_get_capabilities

Check which Siemens NX operations the adapter supports before automating tasks, helping you confirm available capabilities and avoid unsupported actions.

Instructions

List the NX adapter and its explicitly supported operations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses that the tool is a listing operation, implying it is read-only, but it does not explicitly state that it has no side effects or that it is safe to call at any time. This is a minor gap for a simple introspection 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?

The description is a single, well-formed sentence with no fluff. It is front-loaded with the verb 'List' and clearly names the target and scope.

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?

For a zero-parameter tool with no output schema, the description is sufficient. An agent can call it without needing additional context about parameters, side effects, or return formats, as the output is inherently a list of operations.

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 tool has zero parameters, so the schema is complete and the description need not add anything. The baseline of 4 applies because there is nothing to document beyond the tool's purpose.

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 states exactly what the tool does: it lists the NX adapter and its explicitly supported operations. This is specific and distinct from all sibling tools, which perform concrete CAD operations rather than introspection.

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?

While it does not explicitly state when to use it, its role as a discovery tool is obvious from the description. It is the only tool that provides an overview of capabilities, so there is no competing alternative that requires explicit differentiation.

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