resize_node
Resize design elements in Figma by specifying the node ID, width, and height. Modify dimensions programmatically through the Talk to Figma MCP server integration.
Instructions
Resize a node in Figma
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | Yes | New height | |
nodeId | Yes | The ID of the node to resize | |
width | Yes | New width |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"height": {
"description": "New height",
"exclusiveMinimum": 0,
"type": "number"
},
"nodeId": {
"description": "The ID of the node to resize",
"type": "string"
},
"width": {
"description": "New width",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"nodeId",
"width",
"height"
],
"type": "object"
}