3D-MCP

by team-plask
Verified

createFaces

Create multiple Faces

Input Schema

NameRequiredDescriptionDefault
itemsYesArray of Faces to create

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "items": { "description": "Array of Faces to create", "items": { "additionalProperties": false, "properties": { "materialId": { "description": "Material ID for this specific face", "type": "string" }, "meshId": { "description": "ID of the parent mesh", "type": "string" }, "metadata": { "additionalProperties": {}, "description": "Additional tool-specific metadata", "type": "object" }, "name": { "description": "Display name", "type": "string" }, "normal": { "description": "Face normal [nx, ny, nz]", "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" }, "selected": { "default": false, "description": "Selection state of the face", "type": "boolean" }, "smoothingGroup": { "description": "Smoothing group identifier", "minimum": 0, "type": "integer" }, "vertexIds": { "description": "IDs of vertices defining the face", "items": { "type": "string" }, "minItems": 3, "type": "array" } }, "required": [ "name", "meshId", "vertexIds" ], "type": "object" }, "type": "array" } }, "required": [ "items" ], "type": "object" }

You must be authenticated.

Other Tools