Skip to content
LangChain

flowbite mcp for LangChain

io.github.themesberg/flowbite-mcp

MCP server to convert Figma designs to Flowbite UI components in Tailwind CSS

client:LangChain transport:stdio runtime:npm

Install flowbite mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

flowbite mcp in other clients