outlook_list_events
List Outlook calendar events to view your schedule. No additional parameters are required.
Instructions
List Outlook calendar events
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:49-49 (registration)Tool 'outlook_list_events' is registered as a string entry in the TOOLS array with description 'List Outlook calendar events'.
["outlook_list_events", "List Outlook calendar events"], - server.js:106-110 (handler)Generic stub handler for all tools including 'outlook_list_events'. Returns a static inspection message because the real server is 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" }], })); }