Skip to main content
Glama
Praket7

mastercam-mcp

by Praket7

validate_machine_profile

Read-onlyIdempotent

Verify an operation against a machine profile to confirm compatibility and catch mismatches before machining.

Instructions

Validate an operation against a declared machine profile

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profileYes
operationYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
dataNo
liveNo
toolYes
errorNo
receiptNo
documentRevisionNo
operationFingerprintNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.0

TDQS

C2.8/5.0
Behavior2/5

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

The annotations already communicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. But the description adds no behavioral context beyond the word 'Validate': it does not disclose failure behavior, whether validation stops at first violation, whether it performs full capability checking, or what 'valid' means. It neither contradicts the annotations nor enriches them.

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

Conciseness4/5

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

The description is a single, front-loaded sentence with no filler or redundant phrasing. It is grammatically clean and immediately states the verb and object. Its only weakness is that it is quite terse given the complexity of the tool, but as pure conciseness it succeeds.

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?

The input schema is exhaustive and an output schema exists, so parameter structure and return values are covered elsewhere. Annotations cover side-effect safety. What the description still lacks is enough context to route the agent confidently among similar siblings, and any statement about what the validation result means or how strict the checks are. It is minimally viable but not complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the prose description carries the burden of explaining what 'operation' and 'profile' mean as parameters. It only restates their names at a high level ('an operation', 'a declared machine profile') and adds no detail about validation semantics, value interpretation, or how the two objects interact. The schema structure is rich, but the description does not compensate for the complete lack of parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Validate') and clearly names the two central resources: an operation and a machine profile. It is not a tautology and gives a reasonable sense of the tool's job. However, it does not explicitly distinguish this from nearby siblings like get_compatibility_matrix or analyze_toolpath_risk, both of which could also be described as validating operation/profile compatibility.

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

Usage Guidelines2/5

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

There is no guidance on when to prefer this tool over alternatives, nor any mention of prerequisites (e.g., whether the profile must come from list_machine_groups or be a previously 'declared' profile). The phrase 'Validate an operation against a declared machine profile' implies a use case, but it never states when not to use it or which sibling covers related checks.

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