Skip to content
LangChain

traql for LangChain

io.traql/mcp-server

AML risk scoring for crypto addresses and transactions on Ethereum, BSC, TRON, TON, Bitcoin

client:LangChain transport:stdio runtime:npm

Install traql in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-server": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@traql/mcp"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

traql in other clients