MCP 3D Printer Server

by DMontgomery40
Verified

extend_stl_base

Extend the base of an STL file by a specified amount

Input Schema

NameRequiredDescriptionDefault
extension_inchesYesAmount to extend the base in inches
stl_pathYesPath to the STL file to modify

Input Schema (JSON Schema)

{ "properties": { "extension_inches": { "description": "Amount to extend the base in inches", "type": "number" }, "stl_path": { "description": "Path to the STL file to modify", "type": "string" } }, "required": [ "stl_path", "extension_inches" ], "type": "object" }