Laravel Post2Site
Ein Laravel-12/13-Backend-Paket, das Post2Site-MCP-Entwürfe über eine geschützte Content-Publishing-API annimmt.
Laravel Post2Site is the backend half of the Post2Site workflow. The MCP client can draft content, but this package lets the Laravel host keep the authority over authentication, validation, storage, publishing mode, public URLs, and indexing. It is for Laravel sites that want AI-assisted blog posts, product guides, release notes, or localized drafts without giving an assistant admin, shell, or database access.
Install it into a Laravel 12 or 13 application, publish the config and migrations, create a scoped API key, and point the n2n-post2site MCP client at the protected route prefix. Start with review mode when you want manual approval; move to configurable model mapping or a custom adapter only when the host is ready to publish into its own article tables automatically.
Host-seitige Publishing-Infrastruktur
Geschützte Routen
Registriert Content-Publishing-Endpunkte mit Rate Limit und API-Key-Middleware.
Staging-Tabellen
Verwaltet Entwürfe, Übersetzungen, API-Keys und Indexing-Tabellen im Paket.
Optionales Indexing
Kann veröffentlichte URLs per IndexNow einreichen, nachdem der Host einen öffentlichen Link erzeugt.
Publishing-Modi
Review-Modus, konfiguriertes Eloquent-Publishing oder eigener Adapter für komplexe Sites.
Install in a Laravel host
composer require n2ns/laravel-post2site
php artisan vendor:publish --tag=post2site-config
php artisan vendor:publish --tag=post2site-migrations
php artisan migrate
php artisan post2site:key "Production MCP"
Documentation