Skip to content
LangChain

bookkeeping for LangChain

io.helloledger/bookkeeping

Bookkeeping for owner-operated businesses. Query transactions, invoices, and reports.

client:LangChain transport:streamable-http

Install bookkeeping in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

bookkeeping in other clients