move_node
Reposition one or multiple Figma nodes to new X and Y coordinates efficiently using a single or batch move configuration. Ideal for real-time design adjustments via the Conduit MCP server.
Instructions
Moves one or more nodes to a new position in Figma. Accepts either a single move config (via 'move') or an array of configs (via 'moves').
Returns:
content: Array of objects. Each object contains a type: "text" and a text field with the moved node ID(s) and new position(s).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
move | No | A single node move operation. | |
moves | No | An array of node move operations for batch movement. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"move": {
"additionalProperties": false,
"description": "A single node move operation.",
"properties": {
"nodeId": {
"description": "The unique Figma node ID to move. Must be a string in the format '123:456' or a complex instance ID like 'I422:10713;1082:2236'.",
"type": "string"
},
"x": {
"description": "New X position. Must be between -10,000 and 10,000.",
"maximum": 10000,
"minimum": -10000,
"type": "number"
},
"y": {
"description": "New Y position. Must be between -10,000 and 10,000.",
"maximum": 10000,
"minimum": -10000,
"type": "number"
}
},
"required": [
"nodeId",
"x",
"y"
],
"type": "object"
},
"moves": {
"description": "An array of node move operations for batch movement.",
"items": {
"$ref": "#/properties/move"
},
"type": "array"
}
},
"type": "object"
}