Overview
Retrieves comprehensive information about a specific node by its ID. Returns the same detailed data asread_my_design, but for any node in the document, not just the current selection.
Parameters
The ID of the node to get information about.
Return Value
Returns a detailed JSON object containing full node information:Colors are automatically converted to hex format. VECTOR nodes are filtered out to reduce verbosity.
Usage Example
Best Practices
Use
get_selection first to obtain node IDs, or use scan_text_nodes or scan_nodes_by_types to discover node IDs.Common Use Cases
- Inspecting specific nodes after scanning operations
- Getting details about parent or child nodes
- Verifying node properties before modifications
- Analyzing nodes referenced by ID from other operations
Code Location
Source:server.ts:179-208
Related Tools
- get_nodes_info - Get info for multiple nodes at once
- read_my_design - Get info about current selection
- set_focus - Focus on a specific node