delete_node
Remove a specific node from Figma designs by specifying its ID, enabling programmatic design updates through natural language commands via the Talk to Figma MCP server.
Instructions
Delete a node from Figma
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nodeId | Yes | The 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"
}