Talk to Figma MCP

by sonnylazuardi
Verified

set_text_content

Set the text content of an existing text node in Figma

Input Schema

NameRequiredDescriptionDefault
nodeIdYesThe ID of the text node to modify
textYesNew text content

Input Schema (JSON Schema)

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