Skip to content
LangChain

WalletHygiene for LangChain

io.github.evozim/wallet-hygiene

On-chain toxicity and spam transaction detector for Web3 wallets.

client:LangChain transport:sse

Install WalletHygiene in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "wallet-hygiene": {
            "transport": "streamable_http",
            "url": "https://wallet-hygiene-mcp.vercel.app/api/mcp",
        }
})

tools = await client.get_tools()

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

WalletHygiene in other clients