exportGeometry
Convert 3D geometry collections into external formats (OBJ, FBX, STL, GLTF, PLY, USD) with customizable options like material export and scaling via the 3D-MCP server.
Instructions
Export geometry collections to external formats
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Geometry export operations |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Geometry export operations",
"items": {
"additionalProperties": false,
"properties": {
"format": {
"description": "Target format",
"enum": [
"obj",
"fbx",
"stl",
"gltf",
"ply",
"usd"
],
"type": "string"
},
"meshIds": {
"description": "IDs of meshes to export",
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"additionalProperties": false,
"description": "Export options",
"properties": {
"exportMaterials": {
"default": true,
"description": "Whether to export materials",
"type": "boolean"
},
"scale": {
"default": 1,
"description": "Export scale factor",
"exclusiveMinimum": 0,
"type": "number"
}
},
"type": "object"
}
},
"required": [
"meshIds",
"format"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}