Skip to content
LangChain

Transcriptor MCP for LangChain

io.github.samson-art/transcriptor-mcp

Fetch transcripts, subtitles, chapters, metadata and frames from YouTube and 10+ video platforms

client:LangChain transport:streamable-http runtime:oci

Install Transcriptor MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "transcriptor-mcp": {
            "transport": "streamable_http",
            "url": "https://transcriptor.gateway.mcpal.io/mcp",
        }
})

tools = await client.get_tools()

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

Transcriptor MCP in other clients