Get network topology
get_td_topologyMap the network wiring under a root path, returning nodes, connections, and flagging structural issues.
Instructions
Read-only: return the nodes AND the connections (wiring) under a network root, flagging obvious structural issues. Returns {nodeCount, connectionCount, issues[], topology}. Use this when you need how nodes are wired together; use get_td_nodes/find_td_nodes when you only need the node list without connections, or snapshot_td_graph when you also want each node's parameters captured for diffing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| root_path | No | Network root to map. | /project1 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The network root that was mapped, echoing the request. | |
| nodeCount | Yes | Total number of nodes found under the root. | |
| connectionCount | Yes | Total number of wires (connections) between those nodes. | |
| issues | Yes | Plain-language structural problems detected, e.g. dangling or orphaned nodes. | |
| topology | Yes | The full graph: the node list and the connection list. |