Skip to content
LangChain

DomainDNA: Tech Stack Detector, WHOIS & Domain Age API for LangChain

io.github.shawmena-dotcom/domain-intel

DomainDNA: a domain's tech stack, email security (MX/SPF/DMARC), TLS expiry and age in one record.

client:LangChain transport:streamable-http

Install DomainDNA: Tech Stack Detector, WHOIS & Domain Age API in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "domain-intel": {
            "transport": "streamable_http",
            "url": "https://mcp.apify.com/?tools=cybermax/domain-intel",
        }
})

tools = await client.get_tools()

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

DomainDNA: Tech Stack Detector, WHOIS & Domain Age API in other clients