Skip to content
LangChain

sanctionwise for LangChain

io.github.qinisolabs/sanctionwise

Verified UK sanctions screening for AI agents — official FCDO UK Sanctions List, not guesses.

client:LangChain transport:stdio runtime:npm

Install sanctionwise in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

sanctionwise in other clients