Skip to content
LangChain

finnhub for LangChain

io.usefulapi/finnhub

Quotes, company profiles, fundamentals, earnings and IPO calendars, plus market and company news.

client:LangChain transport:streamable-http

Install finnhub in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "finnhub": {
            "transport": "streamable_http",
            "url": "https://finnhub.usefulapi.io/mcp",
        }
})

tools = await client.get_tools()

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

finnhub in other clients