diff --git a/src/Console/Commands/InspectorCommand.php b/src/Console/Commands/InspectorCommand.php index af7dd86..eeb25c0 100644 --- a/src/Console/Commands/InspectorCommand.php +++ b/src/Console/Commands/InspectorCommand.php @@ -53,7 +53,8 @@ public function handle(Registrar $registrar): int } if (is_null($localServer) && is_null($route)) { - $this->components->error('MCP Server with name ['.$handle.'] not found. Available servers: '.Arr::join(array_keys($servers), ', ')); + $availableServers = Arr::map(array_keys($servers), fn ($server): string => "[{$server}]"); + $this->components->error('MCP Server with name ['.$handle.'] not found. Available servers: '.Arr::join($availableServers, ', ')); return static::FAILURE; }