Talk to Figma MCP

by sonnylazuardi
Verified

clone_node

Clone an existing node in Figma

Input Schema

NameRequiredDescriptionDefault
nodeIdYesThe ID of the node to clone
xNoNew X position for the clone
yNoNew Y position for the clone

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "nodeId": { "description": "The ID of the node to clone", "type": "string" }, "x": { "description": "New X position for the clone", "type": "number" }, "y": { "description": "New Y position for the clone", "type": "number" } }, "required": [ "nodeId" ], "type": "object" }