list_calendar_names
Retrieve the names of all calendars available on your Mac. Use this to identify calendars for event management and scheduling.
Instructions
List available calendars
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:20-20 (registration)Tool 'list_calendar_names' is registered as part of the TOOLS array (line 20), with description 'List available calendars'. It is then registered via server.tool() in the loop at lines 106-110. This is a stub server—the real implementation is a native binary.
["list_calendar_names", "List available calendars"], - server.js:106-110 (handler)The handler function for list_calendar_names (and all tools) is a stub async function that returns a static text response. The real implementation exists in a separate 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" }], })); }