delete_calendar_event
Delete macOS Calendar events with a preview to verify details before permanent removal.
Instructions
Delete a calendar event with preview
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Registration of delete_calendar_event tool via server.tool() in a loop that registers all TOOLS. The tool is registered with name, description, empty schema {}, and a stub handler.
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:82-86 (handler)Stub handler function for delete_calendar_event that returns a message indicating this is an inspection stub and the real server is a native macOS binary.
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:24-24 (registration)Tool name and description defined in the TOOLS array: 'delete_calendar_event' - 'Delete a calendar event with preview'
["delete_calendar_event", "Delete a calendar event with preview"],