outlook_search_emails
Search Outlook emails by subject, sender, or date to locate specific messages.
Instructions
Search Outlook emails
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:47-47 (registration)The tool 'outlook_search_emails' is registered in the TOOLS array with description 'Search Outlook emails'.
["outlook_search_emails", "Search Outlook emails"], - server.js:106-109 (handler)All tools including outlook_search_emails use a stub handler that returns a static message. The real implementation is in the native binary and not present in this stub file.
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" }], }));