create_reminder
Create a reminder in macOS Reminders app to keep track of important tasks.
Instructions
Create a new reminder
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:107-110 (handler)The handler for 'create_reminder' is a stub that returns an inspection message. The real implementation is in a native binary that this stub represents.
server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], })); } - server.js:27-27 (registration)The 'create_reminder' tool is registered as part of the TOOLS array with description 'Create a new reminder'
["create_reminder", "Create a new reminder"], - server.js:107-107 (schema)The schema for 'create_reminder' has an empty object '{}', meaning no input parameters are defined in this stub.
server.tool(name, desc, {}, async () => ({