list_calendar_events
List calendar events for a date range to see your schedule and plan your activities.
Instructions
List calendar events for a date range
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:21-21 (registration)The tool 'list_calendar_events' is registered in the TOOLS array with description 'List calendar events for a date range'.
["list_calendar_events", "List calendar events for a date range"], - server.js:106-110 (handler)Generic handler registered via server.tool() that returns a stub response. This is an MCP inspection stub; the real implementation is in a 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" }], })); }