index.d.ts 672 B

1234567891011121314151617181920212223
  1. #!/usr/bin/env node
  2. /**
  3. * Apple Mail MCP Server
  4. *
  5. * A Model Context Protocol (MCP) server that provides AI assistants
  6. * with the ability to interact with Apple Mail on macOS.
  7. *
  8. * This server exposes tools for:
  9. * - Reading and searching emails
  10. * - Sending emails
  11. * - Managing mailboxes
  12. * - Managing multiple accounts (iCloud, Gmail, Exchange, etc.)
  13. *
  14. * Architecture:
  15. * - Tool definitions are declarative (schema + handler)
  16. * - The AppleMailManager class handles all AppleScript operations
  17. * - Error handling is consistent across all tools
  18. *
  19. * @module apple-mail-mcp
  20. * @see https://modelcontextprotocol.io
  21. */
  22. export {};
  23. //# sourceMappingURL=index.d.ts.map