Install
$ agentstack add mcp-nativephp-superstack ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Super Stack
Open-source Laravel starter kit with Filament, NativePHP SuperNative, and Laravel MCP.
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
- PHP 8.4+ (Herd recommended)
- Composer
- Node (optional, for Vite)
- Xcode / Android Studio for native runs (NativePHP Mobile v4 environment)
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).
- Home (SuperNative via Web UI): http://superstack.test
- Admin panel: http://superstack.test/admin
- API: Sanctum is installed (
routes/api.php) — wired for token auth, not demoed with sample endpoints beyond/api/user
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](LICENSE) and [CONTRIBUTING](CONTRIBUTING.md).
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: NativePHP
- Source: NativePHP/superstack
- License: MIT
- Homepage: https://nativephp.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.