Appearance
Notes
Markdown documents — the knowledge layer.
6 tools — 2 read, 4 write.
| Tool | What it does | |
|---|---|---|
notes_create | write | Create a new note with markdown content. |
notes_delete | write | Delete a note permanently. |
notes_get | read | Get a note's full content by ID. |
notes_list | read | List notes visible to you — your own notes plus any shared with you (directly, by role, or org-wide). |
notes_move | write | File one or more notes into a folder (or un-file them with folderId: null). |
notes_update | write | Update an existing note's content, title, tags, or metadata. |
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.