list_nodes

List nodes in the documentation graph. Filter by type or tag to narrow results.

Parameters

NameTypeRequiredDefaultDescription
typestringNoFilter by node type: doc, concept, api, workflow, step
tagstringNoFilter by tag
limitnumberNo50Maximum 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 nodes
list_nodes({ type: "concept" })
// List all nodes tagged "onboarding"
list_nodes({ tag: "onboarding" })
// List first 10 API nodes
list_nodes({ type: "api", limit: 10 })