Skip to content
LangChain

CaptionPipe for LangChain

com.captionpipe/captionpipe

One call burns captions into your video. Hosted, prepaid, no subscription. MP4 plus SRT and VTT.

client:LangChain transport:streamable-http

Install CaptionPipe in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "captionpipe": {
            "transport": "streamable_http",
            "url": "https://api.captionpipe.com/mcp",
        }
})

tools = await client.get_tools()

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

CaptionPipe in other clients