MCP 3D Printer Server

by DMontgomery40
Verified

generate_stl_visualization

Generate an SVG visualization of an STL file from multiple angles

Input Schema

NameRequiredDescriptionDefault
heightNoHeight of each view in pixels (default: 300)
stl_pathYesPath to the STL file
widthNoWidth of each view in pixels (default: 300)

Input Schema (JSON Schema)

{ "properties": { "height": { "description": "Height of each view in pixels (default: 300)", "type": "number" }, "stl_path": { "description": "Path to the STL file", "type": "string" }, "width": { "description": "Width of each view in pixels (default: 300)", "type": "number" } }, "required": [ "stl_path" ], "type": "object" }