list_emails
Retrieve emails from macOS Mail.app inbox with filters to find specific messages and review content locally.
Instructions
List emails from Mail.app inbox with optional filters
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Tool registration loop where list_emails is registered with a stub handler that returns 'This is an inspection stub' message
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Pilot MCP on macOS: npx -y local-mcp@latest setup" }], })); } - server.js:14-14 (registration)Tool definition entry for list_emails in the TOOLS array with its description
["list_emails", "List emails from Mail.app inbox with optional filters"],