Skip to main content
Glama

generate_cad_design

Generate a parametric CAD design contract in a ProtoGen workspace.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
featuresNo
materialNoaluminum
part_nameYes
request_idNo
payment_refNo
workspace_idYes
design_intentNo
dimensions_mmYes
output_formatsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • addedInput schema / properties / payment_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Payment Ref"
      +}
    • addedInput schema / properties / request_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Request Id"
      +}
  2. First observed

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries full burden but only states the action. It omits behavioral traits such as side effects (e.g., overwriting existing designs), authentication needs, rate limits, or implications of the payment_ref parameter. The agent learns nothing about safety or costs.

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 one sentence with no redundant words. It front-loads the core action. However, given the tool's complexity, slightly more detail would not be excessive; still, it earns its place.

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

Completeness2/5

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

Despite an output schema and nested parameters, the description is a single sentence. It does not explain the concept of a 'design contract,' the role of payment_ref, or how outputs are returned. The tool is high-complexity (9 params, nested), but the description is minimal.

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

Parameters1/5

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

The schema has 0% description coverage across 9 parameters, yet the description provides no parameter explanations. It fails to clarify the meaning of key parameters like design_intent, features, or payment_ref, making it extremely hard for the agent to use them correctly.

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 states 'Generate a parametric CAD design contract in a ProtoGen workspace,' specifying the verb 'generate,' the resource 'parametric CAD design contract,' and the scope 'ProtoGen workspace.' This distinguishes it from siblings like create_cad_workspace (workspace creation) and export_cad_design (export), leaving no ambiguity.

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?

No guidance is provided on when to use this tool versus alternatives (e.g., compared to create_cad_workspace or manufacturing_plan_from_spec). The description lacks any context about prerequisites, suitability, or exclusions, forcing the agent to infer usage.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose, from workspace management to design generation and manufacturing planning, with no overlapping functionality.

Naming Consistency4/5

Most tools follow a verb_noun pattern (e.g., create_cad_workspace, generate_cad_design), but 'describe' and 'health' are one-word names, and 'manufacturing_plan_from_spec' uses a different structure, leading to minor inconsistency.

Tool Count5/5

With 6 tools covering workspace creation, design generation, export, and manufacturing planning, the count is well-scoped and appropriate for the server's purpose.

Completeness4/5

The tool set covers core workflows (create, generate, export, plan) and status checks, but lacks update/delete operations for CAD designs, which may limit iterative editing.