Skip to content
LangChain

QuantGist for LangChain

io.github.quantgist-technologies/quantgist-mcp

Macro events, earnings & market data from QuantGist for Claude and other AI agents.

client:LangChain transport:stdio runtime:pypi

Install QuantGist in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "quantgist-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["quantgist-mcp"],
        }
})

tools = await client.get_tools()

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

QuantGist in other clients