@@ -105,9 +105,9 @@ export class McpResponse implements Response {
105105 pagination :
106106 options ?. pageSize || options ?. pageIdx
107107 ? {
108- pageSize : options . pageSize ,
109- pageIdx : options . pageIdx ,
110- }
108+ pageSize : options . pageSize ,
109+ pageIdx : options . pageIdx ,
110+ }
111111 : undefined ,
112112 resourceTypes : options ?. resourceTypes ,
113113 includePreservedRequests : options ?. includePreservedRequests ,
@@ -132,9 +132,9 @@ export class McpResponse implements Response {
132132 pagination :
133133 options ?. pageSize || options ?. pageIdx
134134 ? {
135- pageSize : options . pageSize ,
136- pageIdx : options . pageIdx ,
137- }
135+ pageSize : options . pageSize ,
136+ pageIdx : options . pageIdx ,
137+ }
138138 : undefined ,
139139 types : options ?. types ,
140140 includePreservedMessages : options ?. includePreservedMessages ,
@@ -553,12 +553,14 @@ Call ${handleDialog.name} to handle it before continuing.`);
553553 } else {
554554 const parts = [ ] ;
555555 for ( const extension of data . extensions ) {
556- parts . push ( [
557- `Name: ${ extension . name } ` ,
558- `ID: ${ extension . id } ` ,
559- `Version: ${ extension . version } ` ,
560- `Status: ${ extension . isEnabled ? 'Enabled' : 'Disabled' } ` ,
561- ] . join ( '\n' ) ) ;
556+ parts . push (
557+ [
558+ `Name: ${ extension . name } ` ,
559+ `ID: ${ extension . id } ` ,
560+ `Version: ${ extension . version } ` ,
561+ `Status: ${ extension . isEnabled ? 'Enabled' : 'Disabled' } ` ,
562+ ] . join ( '\n' ) ,
563+ ) ;
562564 }
563565 response . push ( parts . join ( '\n\n' ) ) ;
564566 }
0 commit comments