Skip to content
LangChain

PeepTrend: YouTube Gaming Trend Finder for LangChain

com.peeptrend/youtube-gaming-trend-finder

Find rising Steam games and YouTube content opportunities before the niche gets crowded.

client:LangChain transport:stdio runtime:npm

Install PeepTrend: YouTube Gaming Trend Finder in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "youtube-gaming-trend-finder": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "peeptrend-mcp"],
        }
})

tools = await client.get_tools()

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

PeepTrend: YouTube Gaming Trend Finder in other clients