it-tools-mcp 3.1.1 → 3.2.0
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/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -293,7 +293,7 @@ async function main() {
|
|
|
293
293
|
const transport = new StdioServerTransport();
|
|
294
294
|
await server.connect(transport);
|
|
295
295
|
// Log startup (stderr only, no resource usage)
|
|
296
|
-
if (process.env.NODE_ENV === 'test') {
|
|
296
|
+
if (process.env.NODE_ENV === 'test' && process.env.MCP_TEST_MODE === 'true') {
|
|
297
297
|
console.error("IT Tools MCP Server running on stdio");
|
|
298
298
|
// Exit after stdin closes (for test automation)
|
|
299
299
|
process.stdin.on('end', () => {
|