get_node
Retrieve full metadata for a codebase node by semantic ID. Useful after find_nodes or query_graph to get type, file, line, and type-specific properties.
Instructions
Get a single node by its semantic ID with full metadata.
Use this when you have a node ID from find_nodes, query_graph, or another tool and need the complete record.
Returns: All node properties (type, name, file, line, exported) plus type-specific metadata (async, params, className, etc.).
Use cases:
After find_nodes: get full details for a specific result
After query_graph: inspect a violation node
Quick lookup without full context (faster than get_context)
Tip: For relationships and code context, use get_context instead. For just the direct edges, use get_neighbors.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| semanticId | Yes | Semantic ID of the node (from find_nodes, query_graph, etc.) |