Skip to content
LangChain

cold email for LangChain

io.github.bluecraft-ai/cold-email

Generate hyper-personalized cold email sequences via AI.

client:LangChain transport:streamable-http

Install cold email in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cold-email": {
            "transport": "streamable_http",
            "url": "https://mcp.machfive.io/mcp/{api_key}",
        }
})

tools = await client.get_tools()

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

cold email in other clients