Skip to content
LangChain

tech stack detector for LangChain

io.github.dataleadspro/tech-stack-detector

Detect the technology stack behind any website: frameworks, CMS, analytics, and more from one POST.

client:LangChain transport:streamable-http tools:1

Install tech stack detector in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tech-stack-detector": {
            "transport": "streamable_http",
            "url": "https://data.dataleads.pro/mcp/tech-stack-detector",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

tech stack detector in other clients