Skip to content
LangChain

MotionLint for LangChain

io.github.bobaba99/motionlint

Catch bad animations before they ship. Deterministic motion audit + vision-LLM design review.

client:LangChain transport:stdio runtime:npm

Install MotionLint in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

MotionLint in other clients