Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Mcp/Boost.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/Mcp/Resources/ApplicationInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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);
Expand Down
Loading