Skip to content
LangChain

NP Ledger for LangChain

com.npledger/np-ledger

Nonprofit fund accounting your AI agent helps you run — read the books and post entries.

client:LangChain transport:streamable-http

Install NP Ledger in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "np-ledger": {
            "transport": "streamable_http",
            "url": "https://mcp.npledger.com/v1/",
        }
})

tools = await client.get_tools()

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

NP Ledger in other clients