chrome-ai-bridge 2.3.8 → 2.3.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.
@@ -269,7 +269,7 @@ export class RelayServer extends EventEmitter {
269
269
  * Extension polls this endpoint when user clicks the extension icon.
270
270
  */
271
271
  async startDiscoveryServer(options = {}) {
272
- const ports = [8765, 8766, 8767, 8768, 8769, 8770, 8771, 8772, 8773, 8774, 8775];
272
+ const ports = [38765, 38766, 38767, 38768, 38769, 38770, 38771, 38772, 38773, 38774, 38775];
273
273
  const wsUrl = this.getConnectionURL();
274
274
  for (const port of ports) {
275
275
  const started = await new Promise((resolve) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrome-ai-bridge",
3
- "version": "2.3.8",
3
+ "version": "2.3.9",
4
4
  "description": "MCP server bridging Chrome extension and AI assistants (ChatGPT, Gemini). Extension-only mode - no Puppeteer.",
5
5
  "type": "module",
6
6
  "bin": "./scripts/cli.mjs",
@@ -37,6 +37,9 @@
37
37
  "test:mcp:parallel": "npm run build && node scripts/test-mcp.mjs --parallel",
38
38
  "test:network": "npm run build && node scripts/test-network-intercept.mjs",
39
39
  "test": "npm run build:noext && node scripts/test-mcp.mjs --tools-only",
40
+ "discord:collect": "node scripts/discord-readonly-collector.mjs",
41
+ "discord:preflight": "node scripts/discord-readonly-preflight.mjs",
42
+ "discord:status": "node scripts/discord-readonly-status.mjs",
40
43
  "docs": "npm run build:noext && node --experimental-strip-types scripts/generate-docs.ts",
41
44
  "generate-docs": "npm run docs",
42
45
  "sync-server-json-version": "node --experimental-strip-types scripts/sync-server-json-version.ts"