Skip to content
LangChain

Hundo for LangChain

finance.hundo/hundo

Read your accounts, budgets and net worth, and draft changes you confirm.

client:LangChain transport:streamable-http

Install Hundo in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Hundo in other clients