Talk to Figma MCP

by sonnylazuardi
Verified

delete_node

Delete a node from Figma

Input Schema

NameRequiredDescriptionDefault
nodeIdYesThe ID of the node to delete

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "nodeId": { "description": "The ID of the node to delete", "type": "string" } }, "required": [ "nodeId" ], "type": "object" }