Configure the RetroUI MCP server for seamless component integration in your AI-powered development workflow.
The Model Context Protocol (MCP) server allows you to integrate RetroUI components directly into your AI-assisted development workflow. Add components through natural language commands in Claude, Cursor, VS Code, and other MCP-enabled editors.
For more information about the MCP server, please refer to the shadcn/ui MCP documentation.
Run the following command to automatically configure the MCP server for Claude Code:
pnpm dlx shadcn@latest mcp init --client claudeRun the following command to automatically configure the MCP server for Cursor:
pnpm dlx shadcn@latest mcp init --client cursorRun the following command to automatically configure the MCP server for VS Code:
pnpm dlx shadcn@latest mcp init --client vscodeFirst, install the shadcn package as a dev dependency:
pnpm install -D shadcn@latestThen, configure the MCP server based on your editor:
Add the following to your .mcp.json file:
{
"mcpServers": {
"shadcn": {
"command": "npx",
"args": ["shadcn@latest", "mcp"]
}
}
}Add the following to your .cursorrules file:
{
"mcpServers": {
"shadcn": {
"command": "npx",
"args": ["shadcn@latest", "mcp"]
}
}
}Add the following to your .vscode/settings.json file:
{
"mcp.servers": {
"shadcn": {
"command": "npx",
"args": ["shadcn@latest", "mcp"]
}
}
}Add the following to your .windsurfrules file:
{
"mcpServers": {
"shadcn": {
"command": "npx",
"args": ["shadcn@latest", "mcp"]
}
}
}Once configured, you can use natural language commands in your AI-powered editor to add RetroUI components:
The MCP server will automatically install the components with the correct configuration for RetroUI's design system.
Last Updated: 28 Apr, 2026