mcp-figma

get_file_nodes

Get specific nodes from a Figma file

Input Schema

NameRequiredDescriptionDefault
depthNoOptional. Depth of nodes to return (1-4)
fileKeyYesThe key of the file to get nodes from
node_idsYesArray of node IDs to get
versionNoOptional. A specific version ID to get

Input Schema (JSON Schema)

{ "properties": { "depth": { "description": "Optional. Depth of nodes to return (1-4)", "type": "number" }, "fileKey": { "description": "The key of the file to get nodes from", "type": "string" }, "node_ids": { "description": "Array of node IDs to get", "items": { "type": "string" }, "type": "array" }, "version": { "description": "Optional. A specific version ID to get", "type": "string" } }, "required": [ "fileKey", "node_ids" ], "type": "object" }