From 1a7154ff7539a1373328267fde09c919d6df152d Mon Sep 17 00:00:00 2001 From: Caleb White Date: Wed, 13 Aug 2025 12:08:40 -0500 Subject: [PATCH] docs: add docker mcpServer example --- README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f0c030c..36e38d2 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,6 @@ Laravel Boost includes AI guidelines for the following packages and frameworks. | Laravel Folio | core | | Enforce Tests | conditional | - ## Available Documentation | Package | Versions Supported | @@ -91,7 +90,6 @@ Laravel Boost includes AI guidelines for the following packages and frameworks. | Pest | 3.x, 4.x | | Tailwind CSS | 3.x, 4.x | - ## Adding Custom AI Guidelines To augment Laravel Boost with your own custom AI guidelines, add `.blade.php` files to your application's `.ai/guidelines/*` directory. These files will automatically be included with Laravel Boost's guidelines when you run `boost:install`. @@ -118,6 +116,22 @@ JSON Example: } ``` +If using sail, then you can use the following: + +```json +{ + "mcpServers": { + "laravel-boost": { + "command": "vendor/bin/sail", + "args": [ + "artisan", + "boost:mcp" + ] + } + } +} +``` + ## Contributing Thank you for considering contributing to Boost! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).