get_node_info
Fetch detailed node information by ID: size, visibility, lock state, parent/children IDs, text, world and relative positions, plus image generation status.
Instructions
Get detailed information about a specific node by ID, including its size, visibility, lock state, parent, children IDs, text content (for text nodes), and the node's worldX/worldY (world position) and x/y (relative to parent). When the node has a generated image, also returns imageGeneration.status (processing / ready / error) and imageGeneration.output (raster / svg) — poll this to know when generation completes. Raster fills are read with get_fill_image; SVG output is read with get_jsx. Returns an error if the node does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fileId | No | Optional. The Paper file ID this call should act on. Pass it to reliably target a specific file when several are open at once (e.g. multiple agents from the same session working in parallel). Omit to use the most recently opened file in the session. | |
| nodeId | Yes | The ID of the node to inspect |