polydev-ai 1.9.8 → 1.9.9

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.
@@ -301,7 +301,9 @@ class StdioMCPWrapper {
301
301
  this.PENDING_SESSION_FILE = path.join(os.homedir(), '.polydev-pending-session');
302
302
 
303
303
  // Initialize CLI Manager for local CLI functionality
304
- this.cliManager = new CLIManager();
304
+ // Disable StatusReporter - it's redundant (updateCliStatusInDatabase handles DB updates via /api/cli-status-update)
305
+ // and causes 401 errors because /api/mcp uses different auth than /api/cli-status-update
306
+ this.cliManager = new CLIManager({ enableStatusReporting: false });
305
307
 
306
308
  // Load manifest for tool definitions
307
309
  this.loadManifest();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polydev-ai",
3
- "version": "1.9.8",
3
+ "version": "1.9.9",
4
4
  "engines": {
5
5
  "node": ">=20.x <=22.x"
6
6
  },