Skip to main content
Glama

Create Parameter

create_parameter

Create a named numeric parameter with a unit and optional comment to drive design dimensions in Fusion 360.

Instructions

Create a new user parameter

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesParameter name
unitYesUnit the value is given in (e.g. 'mm', 'cm', 'in', 'deg'). Empty means unitless.
valueYesNumeric value, expressed in `unit`
commentNoOptional comment

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already indicate this is a non-read-only, non-idempotent, non-destructive operation, and the description does not add behavior beyond that. It does not state what happens on duplicate names, whether existing values are overwritten, or what the response contains. The description is not contradictory, but it provides no extra operational context.

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 repetition. It is appropriately concise, though it borders on being too terse to convey usage context.

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?

For a mutation tool with no output schema and no behavioral notes, the description is thin. An agent would need to infer or experimentally discover what happens if a parameter with the same name already exists, whether the creation is immediately persisted, and how to confirm success. The schema explains inputs well, but the overall context for safely using the tool is incomplete.

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 coverage is 100%, so the parameters are already fully documented in the input schema. The description adds no semantic information about parameters, but since the schema carries the load, the baseline of 3 is appropriate.

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 ('Create') and a concrete resource ('user parameter'), and the word 'new' helps distinguish this from sibling tools like set_parameter and delete_parameter. It could be slightly more precise about what makes a parameter 'user-defined', but the core purpose is immediately clear.

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?

The description gives no guidance on when to choose this tool over set_parameter, delete_parameter, or get_parameters. There is no mention of prerequisites, duplicate handling, or whether this is for creating a brand-new parameter versus updating an existing one. The distinction is only implicit in the name.

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