Overview
These four write tools let an assistant edit your notes and folder organization on your behalf:update_note— Update a note’s title. Scopemcp:notes:write.update_folder— Update a folder’s title, description, or color. Scopemcp:folders:write.move_folder— Move a folder under a different parent, or to the workspace root. Scopemcp:folders:write.reorder_folders— Reorder sibling folders within their parent. Scopemcp:folders:write.
- Rename a note after its meeting so the title reflects what actually happened.
- Rename a folder, tidy up its description, or recolor it for at-a-glance grouping.
- Reorganize the folder tree: nest a folder under another, promote it to the workspace root, or change the order siblings appear in.
User key vs. workspace-system key (folder tools). For
update_folder, move_folder, and reorder_folders: a user API key can edit any folder it has edit access to (private or team). A workspace-system API key can edit TEAM (workspace-shared) folders only — attempts to edit a private folder are rejected. update_note works with user, workspace, or organization API keys.update_note
Update a note’s title.Parameters
Example
Request:update_folder
Update a folder’s title, description, and/or color. This is an AIP-134 field-mask update: only the fields you pass are changed, and everything you omit is left untouched. At least one field is required.Parameters
At least one of
title, description, or color must be provided. Fields you omit are not modified — this lets you change the color without resending the title, for example.Example
Request:move_folder
Move a folder under a different parent, or to the workspace root.Parameters
Example
Request:12346 under folder 12345.
Response:
newParentId (or pass null):
Request:
reorder_folders
Reorder sibling folders. Pass the complete desired order of a single set of siblings; the workspace is inferred from the first folder ID.Parameters
Example
Request:Scope Requirements
update_note requires the mcp:notes:write scope; update_folder, move_folder, and reorder_folders require the mcp:folders:write scope.
API keys carry all scopes, so any valid API key can call these tools. The
mcp:notes:write / mcp:folders:write scopes matter for OAuth-based clients, where the granted scopes gate which tools are callable.Related Tools
get_note— Read a note’s current metadata before updating its title.- Folder search — Find a folder’s
folderIdby name before editing, moving, or reordering it. get_note_folders— List the folders a note belongs to.