Skip to content

Commit b0cb8e0

Browse files
Removes vscode-specific check
1 parent 5497a05 commit b0cb8e0

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/env/node/gk/cli/integration.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -293,15 +293,7 @@ export class GkCliIntegrationProvider implements Disposable {
293293
}
294294
}
295295

296-
// Verify that the MCP server was actually configured in settings.json
297-
const setting = workspace.getConfiguration('mcp.servers.GitKraken');
298-
if (!setting?.get('type') || !setting?.get('args') || !setting?.get('command')) {
299-
const errorMsg = 'MCP server configuration verification failed: Unable to update MCP settings';
300-
Logger.error(errorMsg);
301-
throw new Error(errorMsg);
302-
}
303-
304-
Logger.log('MCP configured successfully - GitKraken server verified in settings.json');
296+
Logger.log('MCP configuration completed');
305297
} finally {
306298
// Always clean up downloaded/extracted files, even if something failed
307299
if (mcpInstallerPath != null) {

0 commit comments

Comments
 (0)