Use UI Beats from inside your coding agent.
Most components now get chosen by whatever is writing the code, not by someone browsing a gallery. The UI Beats MCP server puts the whole catalogue (55 components, their props and their source) inside Claude Code, Cursor, Windsurf, or any other client that speaks MCP. Your agent can then find the right component and read its real props instead of guessing at an API.
One click for Cursor and VS Code, one command for Claude Code, a config block for everything else.
For Windsurf, Claude Desktop and anything else that reads an mcpServers block:
{
"mcpServers": {
"uibeats": {
"command": "npx",
"args": ["-y", "@uibeats/mcp"]
}
}
}Four, deliberately. Each one maps to a step your agent actually takes.
A typical exchange: the agent searches for what you described, reads the component’s real props before writing any JSX, then runs the install command in your project root.
The same content is served as plain markdown, for agents that only fetch URLs.
.md to its URL.Point an agent at a single component:
curl https://uibeats.com/docs/card/flip-card.mdThe server is open source and has no backend of its own.
It is a cached client over the two static files above, so it stays in step with the site automatically. Read it under packages/mcp. To develop against a local site, set UIBEATS_URL.