Talk to Figma MCP

by sonnylazuardi
Verified

move_node

Move a node to a new position in Figma

Input Schema

NameRequiredDescriptionDefault
nodeIdYesThe ID of the node to move
xYesNew X position
yYesNew Y position

Input Schema (JSON Schema)

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