Skip to content
LangChain

coalesce transform for LangChain

io.github.jessemarshall/coalesce-transform

MCP server for managing Coalesce Transform workspaces, nodes, pipelines, and runs.

client:LangChain transport:stdio runtime:npm

Install coalesce transform in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "coalesce-transform": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "coalesce-transform-mcp"],
        }
})

tools = await client.get_tools()

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

coalesce transform in other clients