Skip to content
LangChain

DeepVoice Guard for LangChain

io.github.evozim/deepvoice-guard

Acoustic deepfake detector and voice biometrics auditor.

client:LangChain transport:sse

Install DeepVoice Guard in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "deepvoice-guard": {
            "transport": "streamable_http",
            "url": "https://deepvoice-guard-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

DeepVoice Guard in other clients