send_email
Compose and send a new email directly from the macOS Mail app using an AI agent.
Instructions
Compose and send a new email
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:107-110 (handler)The handler for send_email is a stub implementation that returns a message directing the user to install the real Local MCP native binary. All tools share the same stub handler.
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:104-106 (registration)The send_email tool is registered in the TOOLS array at line 16 and iterated over at line 106-110 to register with the MCP server.
]; for (const [name, desc] of TOOLS) { - server.js:107-107 (schema)The schema for send_email is an empty object {} (no parameters defined in this stub).
server.tool(name, desc, {}, async () => ({