list_nodes
List nodes in the documentation graph. Filter by type or tag to narrow results.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
type | string | No | — | Filter by node type: doc, concept, api, workflow, step |
tag | string | No | — | Filter by tag |
limit | number | No | 50 | Maximum number of results to return |
Response
Returns an array of node summaries:
[ { "id": "9c4c9063760e", "type": "concept", "title": "Workspace", "summary": "A workspace is the top-level organizational unit.", "slug": "/concepts/workspace" }]Examples
// List all concept nodeslist_nodes({ type: "concept" })
// List all nodes tagged "onboarding"list_nodes({ tag: "onboarding" })
// List first 10 API nodeslist_nodes({ type: "api", limit: 10 })