Skip to content
LangChain

tallystick for LangChain

com.tally-stick/tallystick

Read, validate and write e-invoices on your own machine. XRechnung, ZUGFeRD, Factur-X, UBL, CII.

client:LangChain transport:stdio runtime:pypi

Install tallystick in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tallystick": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["tallystick-mcp"],
        }
})

tools = await client.get_tools()

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

tallystick in other clients