secure privacy mcp for LangChain
io.github.secureprivacy/secure-privacy-mcp
An MCP server that automatically integrate GDPR-compliant cookie consent banners into websites
client:LangChain
transport:stdio
runtime:npm
Install secure privacy mcp in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"secure-privacy-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "secure-privacy-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs