From 635aef192c113582395c38daa926c3047291f70e Mon Sep 17 00:00:00 2001 From: Aymane Bouljam <196711990+aymanebouljam@users.noreply.github.com> Date: Thu, 18 Sep 2025 15:25:54 +0100 Subject: [PATCH] Fix error message formatting in InspectorCommand --- src/Console/Commands/InspectorCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Commands/InspectorCommand.php b/src/Console/Commands/InspectorCommand.php index df67503..662038c 100644 --- a/src/Console/Commands/InspectorCommand.php +++ b/src/Console/Commands/InspectorCommand.php @@ -53,7 +53,7 @@ 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), ', .')); + $this->components->error('MCP Server with name ['.$handle.'] not found. Available servers: '.Arr::join(array_keys($servers), ', ')); return static::FAILURE; }