OFAC SDN Screening for LangChain
com.bonissystems/ofac-sdn-screening
Screen a name against the U.S. Treasury OFAC SDN list. Information, not a compliance determination.
client:LangChain
transport:streamable-http
tools:2
Install OFAC SDN Screening in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"ofac-sdn-screening": {
"transport": "streamable_http",
"url": "https://bonissystems.com/api/knox/agents/ofac-sdn-screening/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs