list_accounts
Get a list of all configured email and calendar accounts on your Mac. Instantly view accounts set up in Mail and Calendar apps.
Instructions
List configured email and calendar accounts
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:94-94 (registration)The tool 'list_accounts' is registered in the TOOLS array with the description 'List configured email and calendar accounts'.
["list_accounts", "List configured email and calendar accounts"], - server.js:106-110 (handler)All tools including 'list_accounts' share a single stub handler that returns an inspection message. The real handler is in a native binary not present in this codebase.
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-107 (schema)The tool has an empty schema object {} as its input parameters, meaning no parameters are defined for the stub.
server.tool(name, desc, {}, async () => ({