Skip to content
LangChain

Sanctions Screening for LangChain

dev.hatchloop/sanctions-screening

Screen a name or entity against OFAC SDN, the EU Consolidated list and the UK list.

client:LangChain transport:streamable-http tools:8

Install Sanctions Screening in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "sanctions-screening": {
            "transport": "streamable_http",
            "url": "https://hatchloop.dev/mcp/sanctions-screening",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Sanctions Screening in other clients