outlook_list_emails
Retrieve a list of emails from your Microsoft Outlook inbox and other folders.
Instructions
List emails from Microsoft Outlook
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:106-110 (registration)The tool 'outlook_list_emails' is registered in a loop over the TOOLS array. Line 45 defines it with description 'List emails from Microsoft Outlook' and line 107 registers it via server.tool(). The handler is a stub that returns an inspection message rather than real logic.
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-109 (handler)The handler for 'outlook_list_emails' is a stub async function that returns a static message. The real implementation lives in a separate native binary (mentioned in the file header).
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)The schema for 'outlook_list_emails' is an empty object {} passed as the third argument to server.tool(), meaning no input parameters are defined.
server.tool(name, desc, {}, async () => ({