get_node_details
Retrieve comprehensive information about a specific node in a knowledge graph, including attributes, relationships, and associated resources for analysis or modification.
Instructions
Get detailed information about a specific node in the graph. This tool must be used in conjunction with the list_graphs tool, as the nodeId must be obtained from the list_graphs response. Use cases:
View complete node attributes
Check associated resources (SVG/Markdown)
Analyze node relationships with others
Check current state before modifying a node
Usage recommendations:
First call list_graphs to get the node list of the target graph
Get the required nodeId from the returned nodes array
Use the obtained graphId and nodeId to call this tool
Check the returned relationship data to determine if further action is needed
Return data:
data: Node details
id: Node ID
name: Node name
type: Node type
description: Node description
filePath: Associated file path
metadata: Node metadata
resources: Associated resource list
id: Resource ID
type: Resource type (svg/markdown)
title: Resource title
relationships: Relationship list
id: Edge ID
type: Edge type
targetNode: Target node information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| graphId | Yes | Graph ID, must be obtained from list_graphs response | |
| nodeId | Yes | Node ID, must be obtained from the nodes array in list_graphs response |