get_cached_figma_node
Retrieve detailed Figma node properties (type, layout, style, children) from cached file data to minimize API calls. Use depth and simplified options to control response size.
Instructions
Get detailed information for a specific node including all properties (type, name, layout, style, children, etc.). Use this after finding a node ID via search or list_figma_frames. Use 'depth' to limit children depth, 'simplified' for AI-optimized output.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| depth | No | Maximum depth of children to include. 0 = no children, 1 = immediate children only, etc. Omit for unlimited depth. Use this to reduce response size. | |
| file_id | Yes | The Figma file ID. Found in URLs like figma.com/file/<file_id>/... or figma.com/design/<file_id>/... | |
| node_id | Yes | The node ID in format '1:234', '1234:5678', or '1-234' (URL format). Found in Figma URL as ?node-id=1-234 or from search results. | |
| simplified | No | If true, return AI-optimized format with CSS-like properties (e.g., 'flex-row gap-8 p-16' for layout). Significantly reduces response size. Recommended for large nodes. |