Skip to content
LangChain

transcript magic for LangChain

com.transcriptmagic/transcript-magic

Generate transcripts from YouTube, TikTok, Instagram, and Facebook videos.

client:LangChain transport:streamable-http

Install transcript magic in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "transcript-magic": {
            "transport": "streamable_http",
            "url": "https://mcp.transcriptmagic.com/mcp",
        }
})

tools = await client.get_tools()

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

transcript magic in other clients