MCP 3D Printer Server

by DMontgomery40
Verified

confirm_temperatures

Confirm temperature settings in a G-code file

Input Schema

NameRequiredDescriptionDefault
bed_tempNoExpected bed temperature
extruder_tempNoExpected extruder temperature
gcode_pathYesPath to the G-code file

Input Schema (JSON Schema)

{ "properties": { "bed_temp": { "description": "Expected bed temperature", "type": "number" }, "extruder_temp": { "description": "Expected extruder temperature", "type": "number" }, "gcode_path": { "description": "Path to the G-code file", "type": "string" } }, "required": [ "gcode_path" ], "type": "object" }