Skip to content
LangChain

FinCEN (EUA) for LangChain

io.github.mcp-dir/fincen-mcp

Checks whether a name is on the FinCEN (US financial crimes) lists, for compliance and AML due dilig

client:LangChain transport:streamable-http tools:7

Install FinCEN (EUA) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "fincen-mcp": {
            "transport": "streamable_http",
            "url": "https://api.mcp.ai/p_fincen",
        }
})

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

FinCEN (EUA) in other clients