Skip to content
LangChain

bitsbound contract automation for LangChain

io.github.taytrom/bitsbound-contract-automation

AI contract automation with partner-level redlines, OOXML Track Changes, and risk analysis.

client:LangChain transport:stdio runtime:npm

Install bitsbound contract automation in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "bitsbound-contract-automation": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@bitsbound/mcp-server"],
        }
})

tools = await client.get_tools()

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

bitsbound contract automation in other clients