Internal
Knowledge graph
Create a knowledge graph (bubble network) showing how concepts relate to each other, like an Obsidian graph view.
Send "type": "knowledge_graph".
Create a knowledge graph (bubble network) showing how concepts relate to each other, like an Obsidian graph view.
Also available as the MCP tool render_knowledgegraph. The same payload works through either surface.
Fields
nodesobject[]requiredArray of nodes with id, label, and weight (1-8)
Child attributes
idstringrequiredlabelstringrequiredweightintegerrequirededgesobject[]requiredArray of edges with id, from, to, and label
Child attributes
idstringrequiredfromstringrequiredtostringrequiredlabelstringExample
{
"type": "knowledge_graph",
"data": {
"nodes": [
{
"id": "string",
"label": "string",
"weight": 0
}
],
"edges": [
{
"id": "string",
"from": "string",
"to": "string",
"label": "string"
}
]
}
}
Was this page helpful?