MCP 3D Printer Server

by DMontgomery40
Verified

scale_stl

Scale an STL model uniformly or along specific axes

Input Schema

NameRequiredDescriptionDefault
scale_factorNoUniform scaling factor to apply
scale_xNoX-axis scaling factor (overrides scale_factor for X axis)
scale_yNoY-axis scaling factor (overrides scale_factor for Y axis)
scale_zNoZ-axis scaling factor (overrides scale_factor for Z axis)
stl_pathYesPath to the STL file

Input Schema (JSON Schema)

{ "properties": { "scale_factor": { "description": "Uniform scaling factor to apply", "type": "number" }, "scale_x": { "description": "X-axis scaling factor (overrides scale_factor for X axis)", "type": "number" }, "scale_y": { "description": "Y-axis scaling factor (overrides scale_factor for Y axis)", "type": "number" }, "scale_z": { "description": "Z-axis scaling factor (overrides scale_factor for Z axis)", "type": "number" }, "stl_path": { "description": "Path to the STL file", "type": "string" } }, "required": [ "stl_path" ], "type": "object" }