File tree Expand file tree Collapse file tree
mcp/mcp-cli/src/main/java/software/amazon/smithy/java/mcp/cli/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,8 +29,7 @@ public class ListBundles extends SmithyMcpCommand {
2929 protected void execute (ExecutionContext context ) {
3030 var registry = context .registry ();
3131 var installedBundles = context .config ().getToolBundles ().keySet ();
32- for (BundleMetadata bundle : registry
33- .listMcpBundles ()) {
32+ for (BundleMetadata bundle : registry .listMcpBundles ()) {
3433 boolean isInstalled = installedBundles .contains (bundle .getName ());
3534 var commandLine = spec .commandLine ();
3635 System .out .println (commandLine
@@ -42,6 +41,7 @@ protected void execute(ExecutionContext context) {
4241 }
4342 System .out .print ("\t Description: " );
4443 System .out .println (description );
44+ System .out .println ();
4545 }
4646
4747 }
You can’t perform that action at this time.
0 commit comments