Skip to content
LangChain

Hypernatural for LangChain

ai.hypernatural/hypernatural

Create and edit AI videos from chat: plan shots, generate scenes, and export stories and ads.

client:LangChain transport:streamable-http

Install Hypernatural in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Hypernatural in other clients