We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/imdinu/jxa-mail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•509 B
"""Apple Mail MCP - Fast MCP server for Apple Mail with FTS5 search.
Features:
- 87x faster email fetching via batch property fetching
- FTS5 full-text search index for 700-3500x faster body search
Usage:
apple-mail-mcp # Run MCP server (default)
apple-mail-mcp index # Build search index from disk
apple-mail-mcp status # Show index statistics
apple-mail-mcp rebuild # Force rebuild index
"""
from .cli import main
from .server import mcp
__all__ = ["main", "mcp"]