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.
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"lightswind-mcp": {
"env": {
"LIGHTSWIND_LICENSE_KEY": "sk_pro_YOUR_KEY"
},
"args": [
"-y",
"lightswind",
"mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked lightswind against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Compact, efficient, and extensible long-term memory for LLM agents.
MCP Security Weekly
Get CVE alerts and security updates for Lightswind UI Library and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 c