freecad mcp

MIT License
39
  • Apple
  • Linux

delete_object

Delete an object in FreeCAD.

Args: doc_name: The name of the document to delete the object from. obj_name: The name of the object to delete. Returns: A message indicating the success or failure of the object deletion and a screenshot of the object.

Input Schema

NameRequiredDescriptionDefault
doc_nameYes
obj_nameYes

Input Schema (JSON Schema)

{ "properties": { "doc_name": { "title": "Doc Name", "type": "string" }, "obj_name": { "title": "Obj Name", "type": "string" } }, "required": [ "doc_name", "obj_name" ], "title": "delete_objectArguments", "type": "object" }