Get network topology
get_td_topologyReturns the node network wiring under a specified root, including connection count and flagged structural issues. Use to understand how nodes are wired together.
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. Token economy: point it at a specific network root rather than the project root, and leave recursion off unless you need nested networks.
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. | |
| 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. | |
| nodeCount | Yes | Total number of nodes found under the root. | |
| connectionCount | Yes | Total number of wires (connections) between those nodes. |