Skip to content
LangChain

InvoiceXML for LangChain

com.invoicexml/invoicexml

Create, validate, convert & extract compliant e-invoices (UBL, Factur-X, ZUGFeRD, XRechnung)

client:LangChain transport:streamable-http

Install InvoiceXML in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

InvoiceXML in other clients