Skip to content
LangChain

core for LangChain

to.unified/core

Unified.to MCP server — one API for 500+ B2B SaaS integrations across 28+ categories

client:LangChain transport:streamable-http

Install core in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "core": {
            "transport": "streamable_http",
            "url": "https://mcp-api.unified.to/mcp",
        }
})

tools = await client.get_tools()

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

core in other clients