resolve_note_id
Convert note or folder names into their corresponding IDs for use with other tools in the TriliumNext Notes system, enabling accurate identification when users reference notes by title rather than ID.
Instructions
Resolves a note/folder name to its actual note ID for use with other tools. You MUST call this function when users provide note names instead of note IDs (e.g., 'wqd7006', 'My Project') UNLESS the user explicitly provides a note ID. Simple title-based search with user choice when multiple matches found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| noteName | Yes | Name or title of the note to find (e.g., 'wqd7006', 'My Project Folder') | |
| exactMatch | No | Whether to require exact title match. RECOMMENDED: Use false (default) for best user experience - fuzzy search finds partial matches and handles typos, while still prioritizing exact matches when found. Only set to true when user explicitly requests exact matching. | |
| maxResults | No | Maximum number of results to return in topMatches array (default: 10) | |
| autoSelect | No | When multiple matches found: true = auto-select best match (current behavior), false = stop and ask user to choose from alternatives (default: false for better user experience) |