File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ This package handles:
26
26
``` bash
27
27
composer require php-mcp/laravel
28
28
```
29
- 2. The ` LaravelMcpServiceProvider ` will be automatically discovered and registered by Laravel.
29
+ 2. The ` McpServiceProvider ` will be automatically discovered and registered by Laravel.
30
30
3. Publish the configuration file:
31
31
` ` ` bash
32
- php artisan vendor:publish --provider=" PhpMcp\Laravel\Server\LaravelMcpServiceProvider " --tag=" mcp-config"
32
+ php artisan vendor:publish --provider=" PhpMcp\Laravel\Server\McpServiceProvider " --tag=" mcp-config"
33
33
` ` `
34
34
This will create a ` config/mcp.php` file where you can customize the server' s behavior.
35
35
@@ -249,4 +249,4 @@ The MIT License (MIT). Please see [License File](LICENSE) for more information.
249
249
250
250
## Support & Feedback
251
251
252
- Please open an issue on the [GitHub repository](https://github.com/php-mcp/laravel) for bugs, questions, or feedback.
252
+ Please open an issue on the [GitHub repository](https://github.com/php-mcp/laravel) for bugs, questions, or feedback.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class ListCommand extends Command
33
33
*/
34
34
public function handle (Registry $ registry ): int
35
35
{
36
- $ registry ->loadElements (); // Ensure elements are loaded
36
+ $ registry ->loadElementsFromCache (); // Ensure elements are loaded
37
37
38
38
$ type = $ this ->argument ('type ' );
39
39
$ outputJson = $ this ->option ('json ' );
You can’t perform that action at this time.
0 commit comments