list_reminder_lists
List all your macOS Reminders lists to view and manage task categories. Use this to organize and access different reminder lists.
Instructions
List all reminder lists
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:26-26 (registration)Tool 'list_reminder_lists' is registered in the TOOLS array as a stub entry with description 'List all reminder lists'.
["list_reminder_lists", "List all reminder lists"], - server.js:106-109 (handler)All tools including 'list_reminder_lists' are registered on the McpServer via server.tool() with an empty schema and a stub handler returning a fixed placeholder message. No real implementation exists.
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" }], }));