mcp-figma

post_comment

Post a comment on a Figma file

Input Schema

NameRequiredDescriptionDefault
client_metaNoOptional. Position of the comment
comment_idNoOptional. ID of comment to reply to
fileKeyYesThe key of the file to comment on
messageYesComment message text

Input Schema (JSON Schema)

{ "properties": { "client_meta": { "description": "Optional. Position of the comment", "properties": { "node_id": { "type": "string" }, "node_offset": { "properties": { "x": { "type": "number" }, "y": { "type": "number" } }, "type": "object" }, "x": { "type": "number" }, "y": { "type": "number" } }, "type": "object" }, "comment_id": { "description": "Optional. ID of comment to reply to", "type": "string" }, "fileKey": { "description": "The key of the file to comment on", "type": "string" }, "message": { "description": "Comment message text", "type": "string" } }, "required": [ "fileKey", "message" ], "type": "object" }