complete_reminder
Mark reminders as complete in macOS using AI agents. Check off tasks through Claude, Cursor, or Windsurf directly in your native Reminders app without manual input.
Instructions
Mark a reminder as complete
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Registration of complete_reminder tool (along with all other tools) in a loop. Each tool is registered with an empty schema and a stub handler that returns a static message indicating this is an inspection stub.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Pilot MCP on macOS: npx -y local-mcp@latest setup" }], })); } - server.js:28-28 (schema)Definition of complete_reminder in the TOOLS array with its description "Mark a reminder as complete". This is used for tool discovery/registration.
["complete_reminder", "Mark a reminder as complete"],