The AI-native CLI-first React component library. 160+ animated, accessible, production-ready components with MCP Server support for Cursor, Claude & GitHub Copilot. Copy-paste architecture — you own the code.
# Add to your Claude Code skills
git clone https://github.com/codewithMUHILAN/Lightswind-UI-LibraryGuides for using mcp servers skills like Lightswind-UI-Library.
Last scanned: 7/16/2026
{
"issues": [
{
"type": "npm-audit",
"message": "esbuild: esbuild allows arbitrary file read when running the development server on Windows",
"severity": "low"
}
],
"status": "PASSED",
"scannedAt": "2026-07-16T06:18:35.245Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}Lightswind-UI-Library is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by codewithMUHILAN. The AI-native CLI-first React component library. 160+ animated, accessible, production-ready components with MCP Server support for Cursor, Claude & GitHub Copilot. Copy-paste architecture — you own the code. It has 784 GitHub stars.
Yes. Lightswind-UI-Library passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/codewithMUHILAN/Lightswind-UI-Library" and add it to your Claude Code skills directory (see the Installation section above).
Lightswind-UI-Library is primarily written in TypeScript. It is open-source under codewithMUHILAN on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Lightswind-UI-Library against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
The world's first AI-native, CLI-first component library for React.
160+ animated, accessible, production-ready components — delivered as raw source code, owned by you forever.
Documentation · Component Library · Pro License · MCP Server · Changelog
Lightswind UI is a source-code component library built on the same philosophy pioneered by shadcn/ui — components live inside your project, not a runtime dependency. You install them with a single CLI command, own them completely, and customize them freely.
What sets Lightswind UI apart is its AI-native delivery layer — the industry's first MCP (Model Context Protocol) server for a component library, letting AI coding agents like Cursor, Claude, and GitHub Copilot browse, fetch, and install components autonomously inside your codebase.
npx lightswind@latest init
| Feature | Lightswind UI | shadcn/ui | Radix UI | Material UI |
|---|---|---|---|---|
| Copy-paste source ownership | ✅ | ✅ | ❌ | ❌ |
| Smart CLI delivery | ✅ | ✅ | ❌ | ❌ |
| MCP Server support | ✅ | ✅ | ✅ | ✅ |
| Pro CLI & authenticated delivery | ✅ | ❌ | ❌ | ❌ |
| 3D & WebGL shader components | ✅ | ❌ | ❌ | ❌ |
| Integrated Framer Motion & GSAP animations | ✅ | ❌ | ❌ | ❌ |
| Zero runtime vendor lock-in | ✅ | ✅ | ❌ | ❌ |
Run this from the root of your project. The CLI detects your framework (Next.js, Vite, CRA), locates your components folder, installs shared utilities, and registers the Tailwind plugin automatically.
npx lightswind@latest init
During setup, you'll be prompted to select a color theme:
| Theme | Preview |
|---|---|
default |
Classic Blue — clean & minimal |
deep-ocean |
Midnight Blue — dark & immersive |
crimson |
Deep Red — bold & powerful |
emerald |
Forest Green — fresh & vibrant |
amber |
Warm Gold — elegant & energetic |
amethyst |
Soft Purple — modern & creative |
mono |
Pure Grayscale — ultra-clean |
npx lightswind add globe
npx lightswind add border-beam
npx lightswind add toast
The CLI resolves prerequisites automatically. If toast requires progress, both are installed. No manual dependency management.
// Component code is installed in your local project directory
import { Globe } from "@/components/lightswind/globe";
export default function HeroSection() {
return (
<section>
<Globe />
</section>
);
}
Note: Never import directly from
"lightswind". All components live in your localcomponents/lightswind/directory — you own and control the code.
# Initialize a new project
npx lightswind@latest init
# Add a single component
npx lightswind add [component-name]
# Add all components in a category
npx lightswind add --category background
# List all available components
npx lightswind list
# Authenticate with a Pro License Key
npx lightswind auth login sk_pro_YOUR_KEY
# Check auth status
npx lightswind auth status
# Revoke local credentials
npx lightswind auth logout
# Start the MCP server
npx lightswind mcp
# Auto-configure MCP in Cursor / Claude Desktop
npx lightswind mcp init
Lightswind Pro unlocks exclusive premium components, advanced page template blocks, and CLI + MCP authenticated delivery.
Get your license key from the Lightswind Dashboard, then run:
npx lightswind auth login sk_pro_YOUR_LICENSE_KEY
Credentials are stored securely in ~/.lightswindrc. Once authenticated, all Pro content is accessible via the same add command:
npx lightswind add iphone16-pro
npx lightswind add-block saas-hero
LIGHTSWIND_LICENSE_KEY=sk_pro_YOUR_LICENSE_KEY
A single Pro key can be shared across your entire development team. Each team member authenticates locally using the same key.
Lightswind UI is the only component library in the world with a native Model Context Protocol (MCP) server. Once connected, your AI coding assistant can:
npx lightswind mcp init
This command auto-detects your editor and writes the correct config file.
Edit ~/.cursor/mcp.json (or your editor's equivalent MCP settings file):
{
"mcpServers": {
"lightswind-mcp": {
"command": "npx",
"args": ["-y", "lightswind", "mcp"],
"env": {
"LIGHTSWIND_LICENSE_KEY": "sk_pro_YOUR_KEY"
}
}
}
}
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"lightswind-mcp": {
"command": "npx",
"args": ["-y", "lightswind", "mcp"],
"env": {
"LIGHTSWIND_LICENSE_KEY": "sk_pro_YOUR_KEY"
}
}
}
}
{
"mcpServers": {
"lightswind-mcp": {
"command": "npx",
"args": ["-y", "lightswind", "mcp"]
}
}
}
| Tool | Description |
|---|---|
list_all_components |
Browse all 160+ components with metadata |
search_components |
Search by keyword or use-case |
list_categories |
Get all available component categories |
get_component |
Fetch full source code of any component |
get_installation_guide |
Read installation steps for any component |
get_usage_example |
Get live usage code snippets |
list_blocks |
Browse all Pro template blocks |
get_block |
Fetch a full Pro page section (requires key) |
3d-image-ring · 3d-image-carousel · 3d-carousel · 3d-hover-gallery · 3d-image-gallery · 3d-marquee · 3d-model-viewer · 3d-perspective-card · 3d-scroll-trigger · 3d-slider · beam-circle · chain-carousel · plasma-globe · scroll-carousel · sparkle-navbar · angled-slider
aurora-shader · animated-wave · animated-bubble-particles · animated-blob-background · animated-ocean-waves · aurora-background · beam-grid-background · fall-beam-background · grid-dot-backgrounds · gradient-background · glowing-background · glowing-lights · hell-background · innovation-background · interactive-grid-background · dot-pattern · particles-background · rays-background · reflect-background · smokey-background · shader-background · sparkle-particles · stripes-background · wave-background · liquid-fluid
connection-graph · magic-card · ai-prompt · animated-notification · bento-grid · code-hover-cards · count-up · dock · drag-order-list · dynamic-navigation · electro-border · glass-folder · globe · glowing-cards · hamburger-menu-overlay · image-reveal · image-trail-effect · interactive-card · interactive-card-gallery · interactive-gradient-card · iphone16-pro · lens · magic-loader · morphing-navigation · orbit-card · password-strength-indicator · scroll-list · scroll-stack · scroll-timeline · seasonal-hover-cards · sliding-cards · sliding-logo-marquee · stack-list · team-carousel · terminal-card · top-loader · top-sticky-bar · trusted-users · ripple-loader · woofy-hover-image · nav-effect
border-beam · confetti-button · gradient-button · ripple-button · shine-button · trial-button
aurora-text-effect · scroll-reveal · shiny-text · text-scroll-marquee · typewriter-input · typing-text · video-text
canvas-confetti-cursor · particle-orbit-effect · smokey-cursor · smooth-cursor
accordion · alert-dialog · alert · avatar · badge · button · card · carousel · chart · collapsible · context-menu · dialog · drawer · dropdown-menu · hover-card · popover · progress · sheet · skeleton · table · toast · tooltip · toggle-theme
calendar · checkbox · command · form · input · input-otp · label · radio-group · select · `slider