Integration · CrewAI
Add OFAC compliance to CrewAI crews. Screen wallets, names, countries before agents execute.
CrewAI agents coordinate multi-role workflows. If the executor agent pays a sanctioned vendor, the approver agent credentials are irrelevant. The liability lands on you.
from crewai_tools import AgentMailSanctionsCheck
from crewai import Agent, Task, Crew
compliance_agent = Agent(
role="Compliance Officer",
goal="Screen every counterparty before approval",
tools=[AgentMailSanctionsCheck(api_key=os.getenv("AGENTMAIL_KEY"))]
)
# Your payment crew now has a built-in OFAC screenInstallpip install -U crewai-tools sanctions-ofacAdd toolAdd AgentMailSanctionsCheck to crew toolsMake it a gateRoute payment approval through compliance agent firstAudit/dashboard/logs shows every crew screen$99/mo Pro supports multi-agent · Free: 5 checks/day