Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Aura UI
A
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:47:55 PM

Aura UI

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Discover and install Aura UI Blade components for Laravel, Livewire and Tailwind CSS 4.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "aura-ui": {
      "command": "npx",
      "args": [
        "-y",
        "aura-ui"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Aura UI

Latest Version License Tests PHP Laravel Tailwind CSS

"Vibrant Depth" UI component library for Laravel 12 + Livewire 4 + Alpine.js + Tailwind CSS 4.

Aura UI provides 64 production-ready Blade components with a cohesive design system featuring gradients, glow effects, micro-animations, glass morphism, and full dark mode support. Unlike flat/minimal UI libraries, Aura UI intentionally goes in a different direction while staying professional.

Date picker, file upload, autocomplete, charts, calendar, command palette and the rich editor are all included here, under the MIT licence -- no account and no licence key required.

Building an admin panel? Aura UI Pro adds a DataTable system, application shells and data-heavy components on top.

Requirements

  • PHP 8.3+
  • Laravel 12
  • Tailwind CSS 4

Installation

bash
composer require bluestarsystem/aura-ui

Publish config and CSS:

bash
php artisan aura:install

Or publish individually:

bash
# Config only
php artisan vendor:publish --tag=aura-ui-config

# CSS only
php artisan vendor:publish --tag=aura-ui-css

# Views (for customization)
php artisan vendor:publish --tag=aura-ui-views

Import the CSS in your app:

server.ts
/* resources/css/app.css */
@import "vendor/aura-ui/aura.css";

Quick Start

blade
{{-- Button --}}
<x-aura::button variant="primary" size="lg">Save Changes</x-aura::button>

{{-- Input with label and error --}}
<x-aura::input label="Email" type="email" wire:model="email" error="{{ $errors->first('email') }}" />

{{-- Card with header --}}
<x-aura::card shadow="lg">
    <x-slot:header>
        <x-aura::card.title>Dashboard</x-aura::card.title>
    </x-slot:header>
    Your content here.
</x-aura::card>

{{-- Modal --}}
<x-aura::modal name="confirm-delete" max-width="sm">
    <p>Are you sure?</p>
</x-aura::modal>

{{-- Alert --}}
<x-aura::alert variant="success" dismissible>Operation completed.</x-aura::alert>

Components

Primitives

ComponentUsageDescription
Button<x-aura::button>6 variants, 5 sizes, outline, gradient, loading state
Input<x-aura::input>Label, hint, error, prefix/suffix, clearable
Textarea<x-aura::textarea>Auto-resize, character count
Select<x-aura::select>Native select with custom styling
Checkbox<x-aura::checkbox>Animated check, label, description
Radio<x-aura::radio>Grouped via <x-aura::radio-group>
Toggle<x-aura::toggle>Switch with sizes and colors
Icon<x-aura::icon>Heroicons integration

Feedback

ComponentUsageDescription
Badge<x-aura::badge>6 variants, dot, outline, pill, removable
Alert<x-aura::alert>4 variants, dismissible, icon, title
Spinner<x-aura::spinner>Border and gradient styles, 3 sizes
Skeleton<x-aura::skeleton>Text, title, circle, avatar, button, image
Progress<x-aura::progress>5 colors, striped, animated, label

Layout

ComponentUsageDescription
Card<x-aura::card>Header/body/footer slots, glass, hover
Container<x-aura::container>Max-width centered wrapper (sm/md/lg/xl/full)
Layout<x-aura::layout>Flex wrapper for main + aside
Main<x-aura::main>Semantic primary content area
Aside<x-aura::aside>Sidebar with width and sticky options
Modal<x-aura::modal>Overlay, slide-over, glass, sizes
Dropdown<x-aura::dropdown>Items, separators, keyboard nav
Tooltip<x-aura::tooltip>Positions, delay
Avatar<x-aura::avatar>Sizes, status, initials, group

Navigation

ComponentUsageDescription
Breadcrumbs<x-aura::breadcrumbs>Items array, responsive
Pagination<x-aura::pagination>Laravel paginator, per-page

Data Display

ComponentUsageDescription
Empty State<x-aura::empty-state>Icon, title, description, actions
Stats Card<x-aura::stats-card>Value, change, icon
Description List<x-aura::description-list>Label/value pairs
Table<x-aura::table>Composable table with striped, hoverable, bordered, compact

Typography

ComponentUsageDescription
Heading<x-aura::heading>Semantic h1-h6 with auto sizing
Subheading<x-aura::subheading>Secondary descriptive text
Text<x-aura::text>Paragraph text with size, color, weight

Form Layout

ComponentUsageDescription
Form<x-aura::form>Sections, grid, actions

Aura UI Pro

Unlock 25 additional components and a powerful DataTable system with Aura UI Pro:

  • Application shells: App shell, sidebar, dock, steps wizard, resizable panels
  • Data-heavy: Kanban board, tree view, scheduler, carousel
  • Charts: Area chart, bar chart, stat chart, sparkline, gauge
  • Advanced forms: Color picker, date range picker, OTP input, tags input, pillbox, rich text
  • Messaging: Chat bubble, mail message, composer
  • Overlays: Hover card, confirmation dialog
  • DataTable: 6 Livewire traits, column builder, bulk actions, filters, inline editing, row details

Design System

Aura UI's "Vibrant Depth" design system is built on CSS custom properties:

  • Colors: 6 semantic palettes (primary, secondary, success, warning, danger, info) + surface scale
  • Shadows: 6 elevation levels + colored glow effects for focus states
  • Animations: 14 keyframes with spring easing curves
  • Glass morphism: 3 intensity levels (subtle, standard, strong)
  • Typography: Inter (sans) + JetBrains Mono (mono)
  • Border radius: 6-step scale from 6px to 9999px

Dark Mode

All components support dark mode via the .dark class on <html>:

html
<html class="dark">

Colors, shadows, and glows automatically adapt.

Customization

Override CSS custom properties to theme Aura UI:

css
:root {
    --aura-primary-500: #8b5cf6; /* Change primary to violet */
    --aura-radius-md: 12px;      /* Rounder corners */
}

Playground

Visit /aura/playground in your app to see all components live. Toggle in config:

php
// config/aura-ui.php
'playground' => [
    'enabled' => env('AURA_PLAYGROUND', true),
],

Testing

bash
cd packages/bluestarsystem/aura-ui
php vendor/bin/pest

Links

  • Documentation & Pro β€” Full docs, playground, and Pro components
  • Dev.to Article β€” Technical deep-dive on the design language
  • Changelog β€” Release history

License

MIT License. See LICENSE for details.

Credits

  • Juri Montico β€” BlueStarSystem

Related MCP Servers

View all in Developer Tools View all alternatives
  • A
    Agent Skills Search Server

    Search and discover Agent Skills from the skills.sh registry. Powered by HAPI MCP server.

    πŸ’» Developer Tools0 views
    Compare vs Agent Skills Search Server β†’
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • M
    MCP Registry Server

    Publish and discover MCP servers via the official MCP Registry. Powered by HAPI MCP server.

    πŸ’» Developer Tools0 views
    Compare vs MCP Registry Server β†’

Frequently Asked Questions about Aura UI

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "aura-ui": { "command": "npx", "args": ["-y", "Aura UI"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewAura UI AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/aura-ui?style=directory)](https://allmcps.com/mcp/aura-ui)
HTML Embed
<a href="https://allmcps.com/mcp/aura-ui"><img src="https://allmcps.com/api/badge/aura-ui?style=directory" alt="Aura UI on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Aura UI β†’Install in Claude DesktopInstall in CursorInstall in VS Code