Skip to content
LangChain

Stitch Wand for LangChain

io.github.dilshaus/stitch-wand

Design token tools for Google Stitch: convert, validate, diff, lint, generate, and export.

client:LangChain transport:stdio runtime:npm

Install Stitch Wand in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "stitch-wand": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@stitchwand/mcp-server"],
        }
})

tools = await client.get_tools()

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

Stitch Wand in other clients