Skip to content
LangChain

stream for LangChain

io.usefulapi/stream

Query channels, search messages, and read threads, users and reactions in your Stream Chat app.

client:LangChain transport:streamable-http

Install stream in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "stream": {
            "transport": "streamable_http",
            "url": "https://stream.usefulapi.io/mcp",
        }
})

tools = await client.get_tools()

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

stream in other clients