Skip to content
LangChain

mail for LangChain

io.github.honeycrisp-suite/mail

Apple Mail over MCP: fenced reads, draft-only writing, human-gated actions, audited with undo.

client:LangChain transport:stdio runtime:npm

Install mail in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mail": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@honeycrisp/mail"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

mail in other clients