Skip to content
LangChain

Tweens Motion Engine for LangChain

io.github.sohei1l/tweens

Create editable animations, inspect frames and export GIF/MP4 in a chosen local workspace.

client:LangChain transport:stdio runtime:npm

Install Tweens Motion Engine in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tweens": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "tweens-cli"],
        }
})

tools = await client.get_tools()

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

Tweens Motion Engine in other clients