search_notes
Find notes in macOS Notes app that contain a specified keyword.
Instructions
Search notes by keyword
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:106-107 (registration)The search_notes tool is registered in the TOOLS array at line 35, and then registered with the MCP server via server.tool() in a loop at line 107. This is a stub file that just provides tool metadata; the actual implementation is in a native binary.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ - server.js:35-35 (schema)The tool definition with name 'search_notes' and description 'Search notes by keyword'. The schema is an empty object {} passed to server.tool(), meaning no input schema is defined in this stub.
["search_notes", "Search notes by keyword"],