outlook_create_event
Create events in Microsoft Outlook calendar without leaving your workflow. Set date, time, and participants directly.
Instructions
Create Outlook calendar event
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:50-50 (registration)Tool registration entry in the TOOLS array mapping the name "outlook_create_event" to its description "Create Outlook calendar event"
["outlook_create_event", "Create Outlook calendar event"], - server.js:106-109 (handler)Handler registration loop that registers all TOOLS including outlook_create_event. This is a stub handler that returns an inspection message. 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" }], })); - server.js:107-107 (schema)Empty schema object '{}' passed for tool input validation parameters, meaning the stub has no defined input schema.
server.tool(name, desc, {}, async () => ({