read_note
Retrieve the full content of a note from macOS Notes app. Use this tool to access note details stored on your Mac.
Instructions
Read full note content
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:33-33 (registration)Tool 'read_note' is defined as an entry in the TOOLS array with description 'Read full note content'.
["read_note", "Read full note content"], - server.js:106-110 (handler)The tool handler is a generic stub that returns an inspection message. It does not implement actual note reading logic — the real server is a native binary.
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" }], })); }