Skip to content
LangChain

FilmLab for LangChain

com.thefilmradar/filmlab

AI film lab for filmmakers: generate and review images/clips with input provenance, cost preflight

client:LangChain transport:streamable-http

Install FilmLab in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "filmlab": {
            "transport": "streamable_http",
            "url": "https://mcp-lab.thefilmradar.com/mcp",
        }
})

tools = await client.get_tools()

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

FilmLab in other clients