Skip to content
LangChain

invoice generator for LangChain

io.github.theluckystrike/invoice-generator

Create PDF invoices from your AI chat: clients, numbering, VAT, overdue reports. All data is local.

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

Install invoice generator in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

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

invoice generator in other clients