### Install Laravel Boost Source: https://github.com/laravel/boost/blob/main/README.md Installs the Laravel Boost package via Composer and then sets up the MCP server and coding guidelines using the Artisan command. ```bash composer require laravel/boost --dev php artisan boost:install ``` -------------------------------- ### Override Inertia React AI Guidelines Source: https://github.com/laravel/boost/blob/main/README.md Example of overriding a built-in AI guideline for Inertia React by creating a custom Blade file in the specified directory structure. ```Blade .ai/guidelines/inertia-react/2/forms.blade.php ``` -------------------------------- ### Register Laravel Boost MCP Server Source: https://github.com/laravel/boost/blob/main/README.md Manually register the Laravel Boost MCP server with your editor. This involves specifying the command and arguments required to run the server. ```JSON { "mcpServers": { "laravel-boost": { "command": "php", "args": ["artisan", "boost:mcp"] } } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.