Overview
Retrieves comprehensive information about multiple nodes at once by their IDs. This is a batch version ofget_node_info that efficiently fetches information for multiple nodes in a single operation.
Parameters
Array of node IDs to get information about. Each ID should be a string.
Return Value
Returns an array of node information objects:Usage Example
Best Practices
Use this tool instead of calling
get_node_info multiple times. Batch operations are more efficient.Performance Considerations
- Batch fetching is significantly faster than individual requests
- The tool processes all requests in parallel using
Promise.all - Each node is filtered through the same
filterFigmaNodefunction asget_node_info
Common Use Cases
- Inspecting multiple nodes discovered through scanning operations
- Batch analyzing children of a parent node
- Verifying properties of multiple nodes before batch modifications
- Collecting data from specific nodes in a design system
Code Location
Source:server.ts:313-348
Related Tools
- get_node_info - Get info for a single node
- scan_text_nodes - Discover text nodes
- scan_nodes_by_types - Discover nodes by type