Skip to content
LangChain

WhisperGraph for LangChain

io.github.whisper-sec/whisper-graph

The internet's infrastructure graph for AI agents - 46B nodes and edges, free trial via 2 HTTP calls

client:LangChain transport:streamable-http runtime:npm

Install WhisperGraph in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "whisper-graph": {
            "transport": "streamable_http",
            "url": "https://mcp.whisper.security",
        }
})

tools = await client.get_tools()

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

WhisperGraph in other clients