get_annotations
Retrieve annotations from a specific node or the entire Figma document, optionally including category details, for design analysis or collaboration.
Instructions
Get all annotations in the current document or specific node
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeCategories | No | Whether to include category information | |
nodeId | Yes | node ID to get annotations for specific node |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeCategories": {
"default": true,
"description": "Whether to include category information",
"type": "boolean"
},
"nodeId": {
"description": "node ID to get annotations for specific node",
"type": "string"
}
},
"required": [
"nodeId"
],
"type": "object"
}