Step 01
Install the package
Add Alpha UI to your project through your preferred package manager.
Install the package, import the styles, and start building with the same structured docs flow used by mature design systems.
Package managers
Copy the command you need
npm install alpha-ui-kityarn add alpha-ui-kitpnpm add alpha-ui-kitbun add alpha-ui-kitStep 01
Add Alpha UI to your project through your preferred package manager.
Step 02
Load alpha-ui-kit/styles.css at the application root to enable the component styling layer.
Step 03
Use components directly in pages or add them to your design system workflow.
React setup
The library is designed for direct imports and simple composition, which keeps the learning curve shallow and the output consistent.
import { Button, Card, Input } from 'alpha-ui-kit'
import 'alpha-ui-kit/styles.css'
export default function App() {
return (
<Card className="max-w-md">
<Input label="Name" placeholder="Ada Lovelace" />
<Button className="mt-4">Continue</Button>
</Card>
)
}MCP setup
The workspace now includes the Stitch server entry so VS Code can talk to the design system tooling directly.
{
"servers": {
"stitch": {
"type": "http",
"url": "https://stitch.googleapis.com/mcp",
"headers": {
"X-Goog-Api-Key": "your-api-key"
}
}
}
}Continue into the docs to explore buttons, inputs, transfer list behavior, and the rest of the component catalog.