Skip to content
LangChain

Roast My Design System for LangChain

io.github.gregkozakiewicz/roast-my-design-system

Audit your Design System and serve your Agent the rules that keep AI-written UI on-system.

client:LangChain transport:stdio runtime:npm

Install Roast My Design System in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "roast-my-design-system": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "roast-my-design-system"],
        }
})

tools = await client.get_tools()

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

Roast My Design System in other clients