Skip to main content

node_note

Family: Nodes — atomic pieces of work and their relations. See Nodes.

Write an agent-owned work note onto a node.

@mcp.tool()
def node_note(
dir: str,
node_id: str,
text: str,
) -> str

Parameters

NameTypeRequired
dirstryes
node_idstryes
textstryes

Returns str.

Call shape

Fill your values; omit optional parameters:

{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "node_note",
"arguments": {
"dir": "...",
"node_id": "...",
"text": "..."
}
}
}