Skip to content
LangChain

figsnap mcp for LangChain

io.github.arimunandar/figsnap-mcp

The Figma file you have open, as MCP tools. Extract, edit, and keep a saved set.

client:LangChain transport:stdio runtime:npm

Install figsnap mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

figsnap mcp in other clients