retro ui logo
RetroUI
  • Components
  • Blocks
  • Templates
  • Figma
Sign InGet Access

Getting Started

IntroductionInstallationThemesChangelogMCP ServerBlocksProTemplatesProFigma KitPro

Components

AccordionAlertAvatarBadgeBreadcrumbButtonCardCalendarCarouselCheckboxCommandDialogDrawerNewEmptyNewInputLabelLoaderMenuContext MenuPopoverProgressRadioSelectSliderSonnerSwitchTabTableTable Of ContentsNewTextareaTextToggleToggle GroupTooltip

Chart

Bar ChartUpdatedLine ChartArea ChartPie Chart

Utilities

cn
RetroUI

RetroUI

The platform for developers and designers who love unique, playful, and brutalist design.

PRODUCT
  • OS Components
  • UI Blocks
  • Templates
  • Figma Kit
  • Themes
  • Neo Screenshot
SUPPORT
  • Pricing
  • FAQ
  • Documentation
  • Changelog
  • Discord Community
  • Email Support
COMPANY
  • Blog
  • Contact
  • Terms of Use
  • Privacy Policy
Footer decoration

© 2026 AZENCOT LLC. ALL RIGHTS RESERVED.

MCP Server

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.



Automatic Configuration

Claude Code

Run the following command to automatically configure the MCP server for Claude Code:

pnpm dlx shadcn@latest mcp init --client claude

Cursor

Run the following command to automatically configure the MCP server for Cursor:

pnpm dlx shadcn@latest mcp init --client cursor

VS Code

Run the following command to automatically configure the MCP server for VS Code:

pnpm dlx shadcn@latest mcp init --client vscode


Manual Configuration

First, install the shadcn package as a dev dependency:

pnpm install -D shadcn@latest

Then, configure the MCP server based on your editor:


Claude Code

Add the following to your .mcp.json file:

.mcp.json
{
  "mcpServers": {
    "shadcn": {
      "command": "npx",
      "args": ["shadcn@latest", "mcp"]
    }
  }
}

Cursor

Add the following to your .cursorrules file:

.cursorrules
{
  "mcpServers": {
    "shadcn": {
      "command": "npx",
      "args": ["shadcn@latest", "mcp"]
    }
  }
}

VS Code

Add the following to your .vscode/settings.json file:

.vscode/settings.json
{
  "mcp.servers": {
    "shadcn": {
      "command": "npx",
      "args": ["shadcn@latest", "mcp"]
    }
  }
}

Windsurf

Add the following to your .windsurfrules file:

.windsurfrules
{
  "mcpServers": {
    "shadcn": {
      "command": "npx",
      "args": ["shadcn@latest", "mcp"]
    }
  }
}


Usage

Once configured, you can use natural language commands in your AI-powered editor to add RetroUI components:

  • → "Add a retroui button component"
  • → "Install the accordion component from RetroUI"
  • → "Add the card component with neobrutalist styling"

The MCP server will automatically install the components with the correct configuration for RetroUI's design system.

Last Updated: 28 Apr, 2026

On this Page

  • Automatic Configuration [#automatic-configuration]
    • Claude Code [#claude-code]
    • Cursor [#cursor]
    • VS Code [#vs-code]
  • Manual Configuration [#manual-configuration]
    • Claude Code [#claude-code-1]
    • Cursor [#cursor-1]
    • VS Code [#vs-code-1]
    • Windsurf [#windsurf]
  • Usage [#usage]