Neural Integration.
AI Ecosystem.
Connect Uilora to your AI editor via the Model Context Protocol. Give Claude Code, Cursor, or Windsurf access to 548+ components — search, preview, and install without leaving your editor.
Access Control
Syncing Neural Data...
Available MCP Tools
list_componentsSearch and browse all 548+ Uilora components by keyword or categoryview_componentGet the full TSX/JSX source code and dependency list for any componentadd_componentDownload and install a component directly into your project directorySetup
1{2 "mcpServers": {3 "uilora": {4 "command": "npx",5 "args": [6 "-y",7 "uilora@latest",8 "mcp"9 ],10 "env": {11 "UILORA_API_KEY": "YOUR_UILORA_API_KEY"12 }13 }14 }15}Where to add this
Cursor: Settings → Features → MCP → Add Server, or place in .cursor/mcp.json
Protocol Security
Your API key is never stored in plaintext on the client. MCP connections are established locally via stdio, ensuring your secret never leaves your environment during communication.
shadcn Registry
Install any Uilora component directly via the shadcn CLI — no Uilora account required. Components land in your components/ui/ folder, fully editable.
Step 1 — Register once in your project
Add the Uilora registry to your project's components.json:
{
"registries": {
"@uilora": "https://www.uilora.com/r/{name}.json"
}
}Step 2 — Install any component
Use the component ID from the Uilora library (same as uilora add):
$ npx shadcn@latest add @uilora/apple-glass-nav$ npx shadcn@latest add @uilora/uilora-modern-buttons$ npx shadcn@latest add @uilora/pricing-glass
Or use a direct URL (no config needed)
$ npx shadcn@latest add https://www.uilora.com/r/apple-glass-nav.json