list_accounts
View configured email and calendar accounts on macOS to enable AI agents to access your Mail and Calendar data locally.
Instructions
List configured email and calendar accounts
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:73-86 (registration)The 'list_accounts' tool is registered in the TOOLS array (line 74) and then all tools are registered with the MCP server using server.tool() in a loop (lines 82-86). This is a stub implementation that returns a message directing users to install the real Pilot MCP server on macOS.
["list_safari_bookmarks", "List Safari bookmarks"], ["list_accounts", "List configured email and calendar accounts"], ["create_email_folder", "Create a new email folder/mailbox"], ["diagnose", "Run diagnostic checks on all connected services"], ["report_bug", "Report a bug or issue to the development team"], ["request_feature", "Request a new feature"], ["request_integration", "Request integration with an unsupported app"], ]; 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" }], })); }