Search by

nativephp / superstack

shanerbaner82

Super Stack — open-source Laravel starter with Filament, NativePHP SuperNative, and MCP

Package info

github.com/NativePHP/superstack

Type:project

pkg:composer/nativephp/superstack

Statistics

Installs: 4

Dependents: 0

Suggesters: 0

Stars: 21

Open Issues: 4

dev-main 2026-09-12 14:26 UTC

This package is auto-updated.

Last update: 2026-09-13 12:08:47 UTC


README

Open-source Laravel starter kit with Filament, NativePHP SuperNative, and Laravel MCP.

Super Stack home

Filament admin sign in

Stack

Piece Package
Laravel laravel/framework
Admin filament/filament (panel at /admin)
API auth laravel/sanctum — wired, not demoed
Mobile / SuperNative nativephp/mobile
Native UI nativephp/mobile-ui
Web UI (browser EDGE) nativephp/web-ui
MCP server laravel/mcp — no auth added

Requirements

Quick start

Laravel installer

laravel new my-app --using=nativephp/superstack

Laravel Herd

In Herd’s site creation wizard, choose a community / custom starter kit and enter nativephp/superstack.

After create

cd my-app
php artisan migrate
# NativePHP (re-run after upgrades)
php artisan native:install both --no-interaction

Create a Filament admin user with the Filament installation docs (php artisan make:filament-user).

With Laravel Herd, the site is available at http://my-app.test (or whatever you named the project).

MCP

Routes live in routes/ai.php. No authentication is configured on the MCP server — fine for local exploration, not production-ready as-is.

  • Web: POST /mcp/superstack
  • Local: php artisan mcp:start superstack

Starter tool: app-info (App\Mcp\Tools\AppInfoTool) — returns app + package versions.

php artisan mcp:inspector mcp/superstack

See the Laravel MCP docs for servers, tools, and auth options.

Native / SuperNative

Home is a SuperNative screen (Route::native). On a phone, NativePHP Mobile v4 renders it natively; in the browser, Web UI renders the same Blade as HTML.

php artisan native:run

See Installation and SuperNative.

NATIVEPHP_APP_ID defaults to com.superstack.app in .env. The nativephp/ directory is gitignored — regenerate with php artisan native:install.

License

MIT © Bifrost Technologies LLC. See LICENSE and CONTRIBUTING.