TranscriptFetch for LangChain
com.transcriptfetch/youtube-transcripts
Production transcript API for YouTube, TikTok and Instagram, with AI transcription fallback.
client:LangChain
transport:streamable-http
Install TranscriptFetch in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"youtube-transcripts": {
"transport": "streamable_http",
"url": "https://transcriptfetch.com/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs