Skip to main content
Glama

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

NameRequiredDescriptionDefault
moveNoA single node move operation.
movesNoAn 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" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/amalinakurniasari/conduit'

If you have feedback or need assistance with the MCP directory API, please join our Discord server