Skip to content
LangChain

AML (Vínculos Societários) for LangChain

io.github.mcp-dir/aml_vinculos-mcp

Maps a person's corporate ownership ties for anti-money-laundering (AML) due diligence from the CPF.

client:LangChain transport:streamable-http tools:7

Install AML (Vínculos Societários) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

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

AML (Vínculos Societários) in other clients