outlook_read_email
Read an Outlook email on your Mac. Extract and supply email content for use by connected AI agents.
Instructions
Read an Outlook email
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:106-110 (registration)The tool 'outlook_read_email' is registered via a loop over TOOLS array. Each tool, including outlook_read_email, is registered with a stub handler that returns an inspection message. 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" }], })); } - server.js:46-46 (registration)The 'outlook_read_email' tool name and description are defined in the TOOLS array as ['outlook_read_email', 'Read an Outlook email'].
["outlook_read_email", "Read an Outlook email"],