codex-review-mcp 2.3.1 → 2.3.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.
@@ -138,10 +138,12 @@ process.on('uncaughtException', (error) => {
138
138
  console.error(`[codex-review-mcp] Server will continue running, but this indicates a serious bug.`);
139
139
  // Don't exit - let the server continue running
140
140
  });
141
- // Log startup information
141
+ // Log startup information with environment diagnostics
142
142
  console.error(`[codex-review-mcp v${VERSION}] Starting server...`);
143
143
  console.error(`[codex-review-mcp] Node version: ${process.version}`);
144
144
  console.error(`[codex-review-mcp] Platform: ${process.platform}`);
145
+ console.error(`[codex-review-mcp] CWD: ${process.cwd()}`);
146
+ console.error(`[codex-review-mcp] OPENAI_API_KEY: ${process.env.OPENAI_API_KEY ? '✓ Set' : '✗ MISSING'}`);
145
147
  const transport = new StdioServerTransport();
146
148
  await server.connect(transport);
147
149
  console.error(`[codex-review-mcp v${VERSION}] ✅ Server started successfully`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-review-mcp",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build": "tsc",