Search notes
goalslot_search_notesSearch notes by title or body substring, or fetch a specific note by ID. Returns full folder paths and truncated markdown bodies, or lists all note titles when no query is provided.
Instructions
READ ONLY. Finds notes by a substring of their title or body, or fetches one note by id. Notes are a tree, so every result carries its full path such as "Work / Meetings / Standup". Bodies are stored as HTML and are converted to markdown here, then truncated to maxChars, so long notes come back readable rather than as a wall of tags. With no query this lists the user's notes without their bodies, which is the cheap way to see what exists before pulling one. This server cannot create, edit, delete or share notes. Say so rather than looking for another tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum notes to return. Defaults to 10. | |
| query | No | Case-insensitive substring matched against note titles and bodies. Omit to list titles only. | |
| noteId | No | Fetch exactly this note, including its full body. Overrides query. | |
| maxChars | No | Maximum characters of each note body to return. Defaults to 4000. | |
| includeShared | No | Also search notes other people shared with the user. Defaults to false. |