Skip to content
LangChain

payroll deduction code audit for LangChain

io.github.jmshinhwa/payroll-deduction-code-audit

Twelve rules over the deduction-code map, before the January 31 W-2 filing date

client:LangChain transport:stdio runtime:npm

Install payroll deduction code audit in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "payroll-deduction-code-audit": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@readystack/payroll-deduction-code-audit"],
        }
})

tools = await client.get_tools()

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

payroll deduction code audit in other clients