@notebook-intelligence/notebook-intelligence 2.4.0 → 2.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -416,6 +416,7 @@ class MCPConfigEditor {
416
416
  async _onSave() {
417
417
  const mcpConfig = this._docWidget.context.model.toJSON();
418
418
  await NBIAPI.setMCPConfigFile(mcpConfig);
419
+ await NBIAPI.fetchCapabilities();
419
420
  }
420
421
  }
421
422
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@notebook-intelligence/notebook-intelligence",
3
- "version": "2.4.0",
3
+ "version": "2.4.2",
4
4
  "description": "AI coding assistant for JupyterLab",
5
5
  "keywords": [
6
6
  "AI",
package/src/index.ts CHANGED
@@ -589,6 +589,7 @@ class MCPConfigEditor {
589
589
  private async _onSave() {
590
590
  const mcpConfig = this._docWidget.context.model.toJSON();
591
591
  await NBIAPI.setMCPConfigFile(mcpConfig);
592
+ await NBIAPI.fetchCapabilities();
592
593
  }
593
594
 
594
595
  private _docManager: IDocumentManager;