create_note
Create a note in Apple Notes to capture information. Use this tool to add notes without manual input.
Instructions
Create a new note in Apple Notes
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:34-34 (registration)The tool 'create_note' is registered as part of a static TOOLS array with description 'Create a new note in Apple Notes'.
["create_note", "Create a new note in Apple Notes"], - server.js:106-109 (handler)The handler for 'create_note' (and all other tools) is a generic stub that returns 'This is an inspection stub...' since the real server is a native binary. The handler is defined inline in the for loop at lines 106-109.
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" }], }));