update_calendar_event
Update existing calendar events using AI. Modify event details without opening the Calendar app.
Instructions
Update an existing calendar event
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:24-24 (registration)Tool registration entry listing 'update_calendar_event' in the TOOLS array. However, this is a stub/inspection file — the actual handler is a native binary not present in the codebase.
["update_calendar_event", "Update an existing calendar event"], - server.js:106-109 (handler)Generic stub handler registered for all tools including 'update_calendar_event'. The real implementation is in a native binary (macOS/Windows/Linux) not present in this codebase.
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" }], }));