Skip to content
LangChain

Veridion nexus for LangChain

io.github.brano80/veridion-nexus

Veridion Nexus MCP server - GDPR Art. 44-49 runtime compliance for AI agents

client:LangChain transport:stdio runtime:npm

Install Veridion nexus in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "veridion-nexus": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "veridion-nexus-mcp"],
        }
})

tools = await client.get_tools()

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

Veridion nexus in other clients