get_node
Retrieve a node's labels and properties by providing its numeric ID. Returns details or a not-found message.
Instructions
Get a single node by its ID.
Returns the node's labels and all properties, or a not-found message.
Use this tool when: you have a specific node ID and need its details. Do NOT use this for: searching nodes by label or property (use search_nodes_by_label or execute_gql).
Args: node_id: The numeric node ID (e.g. 0, 1, 42).
Returns: JSON with id, labels, and properties -- or an error/not-found message.
Examples: get_node(0) get_node(42)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| node_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |