get_annotation
Retrieve annotations for individual or multiple Figma nodes using the Conduit MCP server. Supports batch processing to fetch detailed node-specific annotation data efficiently.
Instructions
Get annotation(s) for one or more Figma nodes.
Returns:
For single: { nodeId, annotations }
For batch: Array<{ nodeId, annotations }>
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nodeId | No | The ID of a single node to get annotations for. Optional. | |
nodeIds | No | An array of node IDs to get annotations for in batch. Optional. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"nodeId": {
"description": "The ID of a single node to get annotations for. Optional.",
"type": "string"
},
"nodeIds": {
"description": "An array of node IDs to get annotations for in batch. Optional.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}