From b645abee8ee87555376110effb4a9c1bbed9172f Mon Sep 17 00:00:00 2001 From: iz-ahmad Date: Thu, 30 Apr 2026 18:44:33 +0600 Subject: [PATCH 1/2] fix: add missing conjunction and oxford comma in two descriptive strings --- src/Mcp/Boost.php | 2 +- src/Mcp/Resources/ApplicationInfo.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mcp/Boost.php b/src/Mcp/Boost.php index 0da676ce..f6c4c493 100644 --- a/src/Mcp/Boost.php +++ b/src/Mcp/Boost.php @@ -38,7 +38,7 @@ class Boost extends Server /** * The MCP server's instructions for the LLM. */ - protected string $instructions = 'Laravel ecosystem MCP server offering database schema access, error logs, semantic documentation search and more. Boost helps with code generation.'; + protected string $instructions = 'Laravel ecosystem MCP server offering database schema access, error logs, semantic documentation search, and more. Boost helps with code generation.'; /** * The default pagination length for resources that support pagination. diff --git a/src/Mcp/Resources/ApplicationInfo.php b/src/Mcp/Resources/ApplicationInfo.php index 195894d9..008ada8e 100644 --- a/src/Mcp/Resources/ApplicationInfo.php +++ b/src/Mcp/Resources/ApplicationInfo.php @@ -19,7 +19,7 @@ public function __construct(protected ToolExecutor $toolExecutor) /** * The resource's description. */ - protected string $description = 'Comprehensive application information including PHP version, Laravel version, database engine, all installed packages with their versions in the application.'; + protected string $description = 'Comprehensive application information including PHP version, Laravel version, database engine, and all installed packages with their versions in the application.'; /** * The resource's URI. From 1b92c84adeab846301f74fea904b71e0bbaf88c1 Mon Sep 17 00:00:00 2001 From: iz-ahmad Date: Thu, 30 Apr 2026 18:45:35 +0600 Subject: [PATCH 2/2] refactor: remove unnecessary comment from handler --- src/Mcp/Resources/ApplicationInfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mcp/Resources/ApplicationInfo.php b/src/Mcp/Resources/ApplicationInfo.php index 008ada8e..fffb16cf 100644 --- a/src/Mcp/Resources/ApplicationInfo.php +++ b/src/Mcp/Resources/ApplicationInfo.php @@ -39,7 +39,7 @@ public function handle(): Response $response = $this->toolExecutor->execute(ApplicationInfoTool::class); if ($response->isError()) { - return $response; // Return the error response directly + return $response; } $data = json_decode((string) $response->content(), true);