Skip to content
LangChain

genable mcp for LangChain

io.github.musepy/genable-mcp

Write to Figma from any MCP client (Claude Code, Cursor). Complements the read-only official MCP.

client:LangChain transport:stdio runtime:npm

Install genable mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

genable mcp in other clients