Skip to content
LangChain

warehouse mcp for LangChain

io.github.kalehdoo/warehouse-mcp

Production MCP server for Postgres, Oracle, Snowflake, BigQuery, Redshift, DuckDB, MotherDuck.

client:LangChain transport:stdio runtime:npm

Install warehouse mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

warehouse mcp in other clients