Flux UI component and layout docs for AI coding agents. Live from fluxui.dev, Pro-tier aware.
MCPpedia last refreshed this data
io.github.leMaur/livewire-flux-mcp is an MCP server that flux UI component and layout docs for AI coding agents. Live from fluxui.dev, Pro-tier aware. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 89/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"flux-docs": {
"args": [
"-y",
"livewire-flux-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that provides access to Livewire Flux Components and Layouts from Livewire Flux. This server allows AI assistants to fetch and search through Flux component and layout documentation on demand.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'livewire-flux-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked livewire-flux-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design
AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana
Local tools for planning and validating focused browser-game prototypes.
3D & AR SDK for Android, iOS, Web — API docs, samples, validation, and code generation.
AI-native design editor. Open-source Figma alternative.
MCP Security Weekly
Get CVE alerts and security updates for io.github.leMaur/livewire-flux-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that provides access to Livewire Flux Components and Layouts from Livewire Flux. This server allows AI assistants to fetch and search through Flux component and layout documentation on demand.
⚠️ Disclaimer
This is a personal project and is not affiliated with Livewire Flux.
This MCP server scrapes and provides structured access to the Livewire Flux documentation, enabling AI assistants to:
https://fluxui.dev/components/https://fluxui.dev/layouts/Boost already indexes Flux through its search-docs tool, and for a lot of questions that is
enough. Two things it does not do:
search-docs is a semantic search over a 17k-document corpus, so a broad Flux
question can come back as a several-thousand-token dump (laravel/boost#290).
This server fetches the one component page you asked for, plus its reference section.fluxui-development skill carries a hardcoded component
list and does not tell your agent which components need a paid Flux license. This server reads the
tier live and flags it, so your agent stops writing markup you cannot ship.If you are on Boost, npx livewire-flux-mcp install wires both together — see
AI Guidelines & Skills. The two are complementary: keep Boost for
Laravel, Livewire, Pest and the rest; let this server answer Flux.
The server runs over stdio and is launched with npx, so there is nothing to install
globally. Every agent stores that differently — pick yours below.
One-click install:
Or add it by hand to .cursor/mcp.json (this project) or ~/.cursor/mcp.json (every project):
{
"mcpServers": {
"flux-docs": {
"command": "npx",
"args": ["-y", "livewire-flux-mcp"]
}
}
}
Cursor has no cursor mcp add command — the deeplink and the config file are the two supported routes.
claude mcp add --transport stdio --scope project flux-docs -- npx -y livewire-flux-mcp
Everything after -- is passed to the server verbatim. --scope project writes .mcp.json
in the project root so the whole team gets it:
{
"mcpServers": {
"flu
... [View full README on GitHub](https://github.com/lemaur/livewire-flux-mcp#readme)