snow-flow 3.4.30 → 3.4.31

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.
@@ -3280,7 +3280,8 @@ class ServiceNowOperationsMCP {
3280
3280
  async run() {
3281
3281
  const transport = new stdio_js_1.StdioServerTransport();
3282
3282
  await this.server.connect(transport);
3283
- this.logger.info('ServiceNow Operations MCP Server started');
3283
+ // Use stderr for logs to keep stdout clean for JSON-RPC
3284
+ console.error('ServiceNow Operations MCP Server running on stdio');
3284
3285
  }
3285
3286
  }
3286
3287
  exports.ServiceNowOperationsMCP = ServiceNowOperationsMCP;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "3.4.30",
3
+ "version": "3.4.31",
4
4
  "description": "ServiceNow development framework with MCP server integration. Executes background scripts using ES5 JavaScript only (ServiceNow Rhino engine requirement). Provides 17 MCP servers for complete ServiceNow operations including widget deployment with coherence validation, table operations, script execution, machine learning, advanced features, and comprehensive platform management.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",