Skip to content
LangChain

ContHunt for LangChain

io.github.nirmal2000/conthunt

Discover and research viral social content on TikTok, Instagram Reels, and YouTube Shorts.

client:LangChain transport:streamable-http

Install ContHunt in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "conthunt": {
            "transport": "streamable_http",
            "url": "https://mcp.conthunt.app/",
        }
})

tools = await client.get_tools()

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

ContHunt in other clients