get_view
Capture a screenshot of the active view in FreeCAD MCP. Specify the view name (e.g., Isometric, Front, Top) to generate a precise visual representation of your 3D design.
Instructions
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
Name | Required | Description | Default |
---|---|---|---|
view_name | Yes |
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"
}