Skip to content
LangChain

Monk for LangChain

io.github.labstack/monk

Research stocks and futures with quotes, charts, news, scans, and source-backed evidence.

client:LangChain transport:streamable-http

Install Monk in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Monk in other clients