Skip to content
LangChain

Before Users Do for LangChain

io.github.bhuman-ai/beforeusersdo

Browser-backed QA with evidence and fix-ready reports for coding agents.

client:LangChain transport:streamable-http

Install Before Users Do in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "beforeusersdo": {
            "transport": "streamable_http",
            "url": "https://mcp.beforeusersdo.com/mcp",
        }
})

tools = await client.get_tools()

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

Before Users Do in other clients