Skip to content
LangChain

LightShip for LangChain

io.github.lightshiphq/lightship

Governed access to production AI-agent traces in an existing ClickHouse store.

client:LangChain transport:streamable-http

Install LightShip in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "lightship": {
            "transport": "streamable_http",
            "url": "https://lightship-production.up.railway.app/mcp",
        }
})

tools = await client.get_tools()

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

LightShip in other clients