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.
Files changed (2) hide show
  1. package/build/index.js +1 -1
  2. 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', () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "it-tools-mcp",
3
- "version": "3.1.1",
3
+ "version": "3.2.0",
4
4
  "description": "MCP server providing access to various IT tools and utilities for developers",
5
5
  "type": "module",
6
6
  "main": "./build/index.js",