search_emails
Search your macOS Mail inbox by keyword, sender, or date range to quickly locate specific messages.
Instructions
Search emails by keyword, sender, or date range
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:15-15 (registration)Tool definition and registration entry for 'search_emails' in the TOOLS array. The tool is registered with the description 'Search emails by keyword, sender, or date range'.
["search_emails", "Search emails by keyword, sender, or date range"], - server.js:106-109 (handler)Generic handler stub for all tools including 'search_emails'. This is a minimal MCP inspection stub that returns a placeholder message; the real implementation exists 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:106-110 (registration)Registration loop that calls server.tool() for each tool including 'search_emails', registering it with an empty schema and a stub handler.
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" }], })); }