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.
- package/dist/mcp-server.js +3 -1
- package/package.json +1 -1
package/dist/mcp-server.js
CHANGED
@@ -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`);
|