Skip to content
LangChain

credit note for LangChain

io.github.theluckystrike/credit-note

Credit notes against an invoice or standalone: drafts, finalization, rendering, totals.

client:LangChain transport:streamable-http runtime:mcpb tools:10

Install credit note in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "credit-note": {
            "transport": "streamable_http",
            "url": "https://mcp.zovo.one/mcp/credit-note-ics",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

credit note in other clients