analyze_figma_file
Extract and analyze Figma file structures to identify node hierarchies and relationships. Input a Figma URL and optional depth to retrieve organized data for design insights.
Instructions
Analyze a Figma file structure to understand its nodes and hierarchy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Optional depth parameter to limit the node tree depth | |
figmaUrl | Yes | The URL of the Figma file to analyze |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"description": "Optional depth parameter to limit the node tree depth",
"type": "number"
},
"figmaUrl": {
"description": "The URL of the Figma file to analyze",
"type": "string"
}
},
"required": [
"figmaUrl"
],
"type": "object"
}