Connect the ReUI MCP server to Claude (Claude Code and Claude Desktop) and build UI from the ReUI registry by chat.
Set ReUI up in Claude once, then build UI from the entire ReUI registry just by chatting. Pick your Claude below - the two setups differ only in how you add the server. The endpoint is always the same URL, https://mcp.reui.io, over Streamable HTTP.
From your project root, register the server over HTTP:
Open the MCP menu inside Claude Code:
/mcpSelect reui, choose Authenticate, and approve the "Sign in with ReUI" prompt in your browser. A free ReUI account is created in that flow if you do not have one.
Check that Claude Code sees the server and its tools:
claude mcp listYou should see reui listed as connected. No config files, no keys to paste.
Run the one-line installer from your project root so Claude Code follows the ReUI build workflow:
curl -fsSL https://mcp.reui.io/install | node -This drops a ReUI skill file into your project so Claude knows how to search the registry, read the real component APIs, and wire blocks together the ReUI way instead of guessing.
Describe the interface you want in plain language and Claude pulls the right ReUI components, examples, and blocks from the registry, then wires them into your project.
Use ReUI to scaffold an admin app - the app-shell with a collapsible sidebar and top bar, and a dashboard page with stat cards and a chart.Add a data-grid of orders with sorting, column filters, pagination, and row selection, wired to my /api/orders endpoint.Build a multi-step "create project" wizard with the ReUI stepper and form components, with validation on each step.Add a kanban board for support tickets with drag and drop, grouped by status, and a filters bar above it.For Claude Code runs without a browser (CI, remote sessions), create a personal token at your account and pass it as a Bearer header instead of the browser sign-in:
claude mcp add --transport http reui https://mcp.reui.io \
--header "Authorization: Bearer reui_pat_your_token_here"Almost every hiccup is a stale sign-in - the fix is to reconnect and authorize again.
/mcp in Claude Code and re-authenticate reui (or toggle the connector off and on in Claude Desktop), then restart Claude./mcp in Claude Code and re-authenticate reui (or toggle the connector off and on in Claude Desktop) to sign in again./mcp in Claude Code and re-authenticate reui (or toggle the connector off and on in Claude Desktop) and retry your last prompt.Free covers components and examples at 100 requests/day; a Pro or Ultimate
license unlocks premium blocks, icons, and unlimited requests (add
the @reui registry via License Setup to install
them).