Skip to content
LangChain

Dead Simple Email for LangChain

email.deadsimple/dead-simple-email

Give an agent its own inbox: send, receive, and pull signup codes from real email.

client:LangChain transport:streamable-http runtime:pypi

Install Dead Simple Email in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "dead-simple-email": {
            "transport": "streamable_http",
            "url": "https://api.deadsimple.email/mcp",
        }
})

tools = await client.get_tools()

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

Dead Simple Email in other clients