session_note
Family: Sessions — one bounded sitting of governed work — start, end, resume, inspect. See Sessions.
Write an agent-owned work note onto a session.
@mcp.tool()
def session_note(
dir: str,
session_id: str,
text: str,
) -> str
Parameters
| Name | Type | Required |
|---|---|---|
dir | str | yes |
session_id | str | yes |
text | str | yes |
Returns str.
Call shape
Fill your values; omit optional parameters:
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "session_note",
"arguments": {
"dir": "...",
"session_id": "...",
"text": "..."
}
}
}