Skip to content
LangChain

HTML Email Playbook for LangChain

io.github.osamahassouna/email-playbook-mcp

Teaches AI to write HTML email that renders in Outlook, Gmail, and Apple Mail. 19 rules, 6 comps.

client:LangChain transport:streamable-http runtime:npm tools:4

Install HTML Email Playbook in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "email-playbook-mcp": {
            "transport": "streamable_http",
            "url": "https://docs.osamahassouna.com/api/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

HTML Email Playbook in other clients