Skip to content
LangChain

Sendly for LangChain

now.sendly/sendly

Send email, manage contacts, campaigns and workflows, and diagnose deliverability in Sendly.

client:LangChain transport:streamable-http

Install Sendly in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "sendly": {
            "transport": "streamable_http",
            "url": "https://app.sendly.now/api/mcp",
        }
})

tools = await client.get_tools()

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

Sendly in other clients