Integration · LangChain
Add OFAC screening to LangChain and LangGraph agents with one tool. Protect agents from sanctions violations.
LangChain powers thousands of production agents. LangChain itself has no compliance tools. Every agent that touches money is exposed to OFAC violations unless screening is added.
from langchain_community.tools import AgentMailCheck
from langchain.agents import AgentExecutor, create_react_agent
from langchain_anthropic import ChatAnthropic
tool = AgentMailCheck(api_key=os.getenv("AGENTMAIL_KEY"))
llm = ChatAnthropic(model="claude-sonnet-4-5")
agent = create_react_agent(llm, [tool], prompt)
chain = AgentExecutor(agent=agent, tools=[tool], verbose=True)Install MCPpip install -U sanctions-mcpAdd toolAdd AgentMailSanctionsCheck to your LangChain toolsLangGraph guardUse as before_send callback in LangGraphAuditEvery screen is logged and exported via /dashboard/logs$99/mo Pro supports multi-agent · Free: 5 checks/day