Skip to content
LangChain

Vivu for LangChain

io.github.vivuai/vivu

Search your video library with natural language and retrieve relevant moments through MCP.

client:LangChain transport:streamable-http

Install Vivu in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "vivu": {
            "transport": "streamable_http",
            "url": "https://mcp.vivu.ai/mcp",
        }
})

tools = await client.get_tools()

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

Vivu in other clients