freecad mcp

MIT License
39
  • Apple
  • Linux

get_view

Get a screenshot of the active view.

Args: view_name: The name of the view to get the screenshot of. The following views are available: - "Isometric" - "Front" - "Top" - "Right" - "Back" - "Left" - "Bottom" - "Dimetric" - "Trimetric" Returns: A screenshot of the active view.

Input Schema

NameRequiredDescriptionDefault
view_nameYes

Input Schema (JSON Schema)

{ "properties": { "view_name": { "enum": [ "Isometric", "Front", "Top", "Right", "Back", "Left", "Bottom", "Dimetric", "Trimetric" ], "title": "View Name", "type": "string" } }, "required": [ "view_name" ], "title": "get_viewArguments", "type": "object" }