Skip to content

Folders

The hierarchy notes live in, and the context it carries.

6 tools — 2 read, 4 write.

ToolWhat it does
folders_createwriteCreate a context folder — an instruction-fronted container that groups related notes.
folders_deletewriteDelete a context folder.
folders_getreadOpen a folder: returns its instruction header (how to use it), the child folders it routes to, and the notes filed in it (titles only — pull note content lazily with notes_get).
folders_listreadList context folders.
folders_rootwriteOpen the organization's root context folder — the company grounding entry-point.
folders_updatewriteUpdate a folder's name and/or its instruction header.

Calling these

Over MCP, find one with search_tools, then run it with execute_tool. Over REST, POST /api/capabilities/<tool> with the arguments as the JSON body. Either way, fetch the input schema for the tool you're about to call rather than guessing — get_tool_schema over MCP, or GET /api/capabilities?name=<tool> over REST.

See How the API works for auth, errors and the shared envelope.

Docs as of 2026-08-31.