Skip to content
LangChain

sendifai for LangChain

com.sendifai/platform

335 MCP tools, 75 playbooks. AI-native CRM, email/SMS, events, OAuth.

client:LangChain transport:streamable-http

Install sendifai in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "platform": {
            "transport": "streamable_http",
            "url": "https://www.sendifai.com/api/mcp",
        }
})

tools = await client.get_tools()

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

sendifai in other clients