list_notes
Lists all Apple Notes to enable AI agents to read and process your note data on macOS.
Instructions
List notes from Apple Notes
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:32-32 (registration)The tool 'list_notes' is registered as part of the TOOLS array (line 32) with description 'List notes from Apple Notes'. However, the implementation is a generic stub that just returns an inspection message for all tools. There is no dedicated handler function for list_notes.
["list_notes", "List notes from Apple Notes"], - server.js:106-110 (handler)The shared handler for all tools (including list_notes) is a generic stub function that returns a static message: 'This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup'. No actual list_notes logic exists in this stub file.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], })); }