get_reactions
Retrieve Figma prototyping reactions from specified nodes. Process the output immediately with 'reaction_to_connector_strategy' to generate parameters for creating connector lines using 'create_connections'.
Instructions
Get Figma Prototyping Reactions from multiple nodes. CRITICAL: The output MUST be processed using the 'reaction_to_connector_strategy' prompt IMMEDIATELY to generate parameters for connector lines via the 'create_connections' tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nodeIds | Yes | Array of node IDs to get reactions from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"nodeIds": {
"description": "Array of node IDs to get reactions from",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"nodeIds"
],
"type": "object"
}