Skip to content
LangChain

Chasync for LangChain

com.chasync/chasync

Manage Chasync funnels, forms, email templates and leads from MCP-compatible AI assistants.

client:LangChain transport:streamable-http

Install Chasync in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "chasync": {
            "transport": "streamable_http",
            "url": "https://mcp.chasync.com/mcp",
        }
})

tools = await client.get_tools()

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

Chasync in other clients