Skip to content
LangChain

CommSync for LangChain

ai.commsync/commsync

One inbox for SMS and email: read threads, search, manage contacts, and send texts and emails.

client:LangChain transport:streamable-http

Install CommSync in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "commsync": {
            "transport": "streamable_http",
            "url": "https://server.commsync.ai/api/mcp",
        }
})

tools = await client.get_tools()

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

CommSync in other clients