Connect the ReUI MCP server to VS Code and build UI from the ReUI registry by chat.
VS Code connects to ReUI in one step, then you build UI from the ReUI registry by chatting with your coding agent.
Add ReUI from a terminal:
code --add-mcp '{"name":"reui","type":"http","url":"https://mcp.reui.io"}'Or create .vscode/mcp.json in your workspace:
{
"servers": {
"reui": {
"type": "http",
"url": "https://mcp.reui.io"
}
}
}The first time your agent calls a ReUI tool, a browser tab opens with a "Sign in with ReUI" prompt. Authorize it and the connection is done. If you do not have a ReUI account yet, a free one is created for you right there in the same flow, so there is nothing to set up in advance.
Run this once from your project root:
curl -fsSL https://mcp.reui.io/install | node -It drops a ReUI skill file into your workspace so the agent follows ReUI's build workflow (find, install, read the real component APIs, then adapt) instead of guessing.
Describe the interface you want in plain language and VS Code 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.Almost every hiccup is a stale sign-in - the fix is to reconnect and authorize again.
reui, then restart VS Code.reui to sign in again.reui and retry your last prompt.Free = components and examples, 100 requests per day. Pro/Ultimate = premium blocks, icons, and unlimited requests. See pricing for the full breakdown, and the other agent guides for other agents.