File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ if (filesIndex !== -1 && filesIndex < args.length - 1) {
3232 }
3333 fileArgs . push ( args [ i ] )
3434 }
35-
35+
3636 // Support both comma-separated and space-separated file paths
37- customFiles = fileArgs . flatMap ( arg =>
37+ customFiles = fileArgs . flatMap ( arg =>
3838 arg . includes ( ',' ) ? arg . split ( ',' ) . map ( f => f . trim ( ) ) : [ arg . trim ( ) ]
3939 ) . filter ( f => f . length > 0 )
4040}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export class MCPFiles {
2121 // If custom files are specified, use them instead of automatic discovery
2222 if ( this . customFiles && this . customFiles . length > 0 ) {
2323 const mcpFilesPathsData = await this . mcpConfigService . parseCustomFiles ( this . customFiles )
24-
24+
2525 // Process each group to add server status information
2626 for ( const groupName of Object . keys ( mcpFilesPathsData ) ) {
2727 const group = mcpFilesPathsData [ groupName ]
Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ export class MCPConfigService {
273273 } catch ( error ) {
274274 // File does not exist or is not accessible
275275 this . debug ( `Skipping file ${ absolutePath } : ${ error instanceof Error ? error . message : 'Unknown error' } ` )
276-
276+
277277 // Still add to paths with parsable=false to show user it was attempted
278278 mcpFilesPathsData . custom . paths . push ( {
279279 filePath : absolutePath ,
You can’t perform that action at this time.
0 commit comments