move_node
Reposition a Figma design element by specifying its node ID and new X, Y coordinates, optimizing layout adjustments programmatically via natural language commands.
Instructions
Move a node to a new position in Figma
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nodeId | Yes | The ID of the node to move | |
x | Yes | New X position | |
y | Yes | New 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"
}