Skip to content
LangChain

einvoice for LangChain

io.github.makririch/einvoice

XRechnung & ZUGFeRD: create, validate, and convert German e-invoices. EN 16931 compliant.

client:LangChain transport:stdio runtime:npm

Install einvoice in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "einvoice": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "einvoice-mcp"],
        }
})

tools = await client.get_tools()

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

einvoice in other clients