Laravel Post2Site
Un paquete backend para Laravel 12/13 que acepta borradores Post2Site MCP mediante una API protegida de publicación de contenido.
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.
Infraestructura de publicación del host
Rutas protegidas
Registra endpoints de publicación con rate limit y middleware de API key.
Tablas de staging
Gestiona borradores, traducciones, API keys e indexación en tablas propias del paquete.
Indexación opcional
Puede enviar URLs publicadas por IndexNow cuando el host produce un enlace público.
Modos de publicación
Usa review, publicación Eloquent por configuración o un adaptador propio para sitios complejos.
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