Skip to content
LangChain

dryrun for LangChain

io.github.boringsql/dryrun

PostgreSQL schema intelligence from a committed snapshot. No connection, no credentials.

client:LangChain transport:stdio runtime:npm

Install dryrun in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "dryrun": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@boringsql/dryrun"],
        }
})

tools = await client.get_tools()

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

dryrun in other clients