Skip to content
LangChain

gflow-cli for LangChain

io.github.ffroliva/gflow-cli

Drive Google Flow from an agent: Veo video and Imagen image generation

client:LangChain transport:stdio runtime:pypi

Install gflow-cli in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "gflow-cli": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["gflow-cli"],
        }
})

tools = await client.get_tools()

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

gflow-cli in other clients