Skip to content
LangChain

V-Lab for LangChain

io.github.volatility/vlab-mcp

Volatility, SRISK, CRISK, liquidity and climate data from NYU Stern's V-Lab, with model forecasts.

client:LangChain transport:streamable-http

Install V-Lab in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "vlab-mcp": {
            "transport": "streamable_http",
            "url": "https://vlab.stern.nyu.edu/mcp",
        }
})

tools = await client.get_tools()

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

V-Lab in other clients