MCP 3D Printer Server

by DMontgomery40
Verified

slice_stl

Slice an STL file to generate G-code

Input Schema

NameRequiredDescriptionDefault
slicer_pathNoPath to the slicer executable (default: value from env)
slicer_profileNoProfile to use for slicing (default: value from env)
slicer_typeNoType of slicer to use (prusaslicer, cura, slic3r) (default: value from env)
stl_pathYesPath to the STL file to slice

Input Schema (JSON Schema)

{ "properties": { "slicer_path": { "description": "Path to the slicer executable (default: value from env)", "type": "string" }, "slicer_profile": { "description": "Profile to use for slicing (default: value from env)", "type": "string" }, "slicer_type": { "description": "Type of slicer to use (prusaslicer, cura, slic3r) (default: value from env)", "type": "string" }, "stl_path": { "description": "Path to the STL file to slice", "type": "string" } }, "required": [ "stl_path" ], "type": "object" }