How to Use the Bounsel MCP in LangChain
Generate contracts from templates and send them for signature inside your LangChain reasoning loops.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Bounsel MCP to LangChain
Create your Vinkius account to connect Bounsel to LangChain and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Chain Bounsel contract generation in LangChain
The `create_document` tool lets your agent build a contract from a smart template and pass the resulting document ID directly to the next node in your chain. You feed template parameters straight from database lookups into Bounsel without writing glue code. Your LangChain agent uses `send_document` immediately after generation to route the contract for signature. LangSmith traces the entire sequence, showing you the exact JSON payload sent to Bounsel and the latency of the signature request.
Multi-step legal workflows using this MCP Server
The `list_templates` tool queries your active Bounsel templates so your agent can choose the correct legal framework based on user prompt variables. By running this through an MCP Server, the agent handles the decision logic of matching client criteria to template fields. Once the agent selects the template, it calls `get_template` to inspect required fields before generating the final contract. This prevents execution errors by verifying that all necessary variables are present in the LangChain state before proceeding.
Audit company sign-offs with LangChain agents
The `list_documents` tool pulls the status of your active contracts directly into your LangChain agent's context window. Your agent runs periodic checks on pending signatures and cross-references them with `list_users` to see who needs a follow-up. If a document remains unsigned, the agent triggers a custom notification path in your chain. You get a clear log of which contracts are stalled without manual dashboard checking.
Set up Bounsel MCP in LangChain
Prerequisites
- Python 3.10+ installed
-
langchain-mcp-adapters+langgraphpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install langchain-mcp-adapters langgraph langchain-openai. The MCP adapters package converts MCP tools into native LangChainBaseToolobjects. - 2
Connect via HTTP transport
Use
MultiServerMCPClientwith"transport": "http"pointing to your Vinkius endpoint. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Create a ReAct agent
Pass the discovered tools to
create_react_agent()from LangGraph. The agent automatically routes Bounsel tool calls through the MCP protocol. - 4
Run with any LLM
Swap
ChatOpenAIforChatAnthropic,ChatGoogleGenerativeAI, or any LangChain-compatible model. The MCP tools work identically across all providers.
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
async with MultiServerMCPClient({
"bounsel-mcp": {
"transport": "http",
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
}
}) as client:
tools = client.get_tools()
agent = create_react_agent(
ChatOpenAI(model="gpt-4o"),
tools,
)
result = await agent.ainvoke({
"messages": "List recent Bounsel transactions"
})
print(result["messages"][-1].content) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Bounsel. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Bounsel MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Bounsel MCP today
We host it, we monitor it, we maintain it. You just paste one token.