Skip to content
LangChain

Domain Intelligence API for LangChain

io.github.br0ski777/domain-intelligence

WHOIS, DNS records, SSL certificate data for any domain in one call. x402.

client:LangChain transport:sse

Install Domain Intelligence API in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "domain-intelligence": {
            "transport": "streamable_http",
            "url": "https://domain-intelligence.api.klymax402.com/mcp",
        }
})

tools = await client.get_tools()

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

Domain Intelligence API in other clients