How to Use the Openli MCP in LangChain
Build LangChain pipelines that pull Openli compliance data and update privacy agreements on the fly.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Openli MCP to LangChain
Create your Vinkius account to connect Openli to LangChain — we handle the hosting, security, and runtime updates so you don't have to. No server setup required.
Key Capabilities
Automate multi-step compliance workflows
Your LangChain agents can now check your regulatory standing and update documents in a single, unbroken chain. When a user changes their cookie preferences, the agent triggers `save_consent` and immediately updates the central registry without manual intervention. You get a clear, step-by-step execution path that handles legal requirements programmatically. By combining this MCP Server with LangSmith, you trace every legal decision your agent makes. If a client disputes their agreement status, this lets you look up the exact chain run that executed `get_agreement` to prove when and how the terms were presented.
Handle data subject requests programmatically
Stop manually sorting through privacy requests. This integration lets your LangChain chains handle the heavy lifting by pulling incoming requests directly into your backend. An agent can call `list_dsars` to fetch pending requests, analyze the payload, and then execute `create_dsar` to log a new entry in your compliance database. The agent evaluates the request type and decides which tool to run next based on the output of the previous step. You don't have to write custom glue code to connect your database to your privacy desk anymore.
Audit third-party vendor access
Keep your vendor list updated without constantly auditing your codebase. Your agent can run `list_vendors` to retrieve your current third-party list and compare it against your active software dependencies. If it finds a mismatch, it uses `get_vendor` to inspect the details and flags the discrepancy for your legal team. This keeps your public-facing disclosures accurate. You run this as a scheduled LangChain runnable that keeps your external documentation perfectly aligned with your actual data practices.
Set up Openli 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 Openli 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({
"openli-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 Openli 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 Openli. 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 Openli MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Openli MCP today
We host it, we monitor it, we maintain it. You just paste one token.