snow-flow 3.4.27 → 3.4.28

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/cli.js CHANGED
@@ -462,7 +462,7 @@ async function executeClaudeCode(prompt) {
462
462
  }
463
463
  // Launch Claude Code with MCP config and skip permissions to avoid raw mode issues
464
464
  const claudeArgs = hasMcpConfig
465
- ? ['--mcp-config', '.mcp.json', '.', '--dangerously-skip-permissions']
465
+ ? ['--mcp-config', '.mcp.json', '--dangerously-skip-permissions']
466
466
  : ['--dangerously-skip-permissions'];
467
467
  cliLogger.info('🚀 Launching Claude Code automatically...');
468
468
  if (hasMcpConfig) {
@@ -563,7 +563,7 @@ async function executeWithClaude(claudeCommand, prompt, resolve) {
563
563
  cliLogger.warn('⚠️ No MCP configuration found. Run "snow-flow init" to set up MCP servers');
564
564
  }
565
565
  const claudeArgs = hasMcpConfig
566
- ? ['--mcp-config', '.mcp.json', '.', '--dangerously-skip-permissions']
566
+ ? ['--mcp-config', '.mcp.json', '--dangerously-skip-permissions']
567
567
  : ['--dangerously-skip-permissions'];
568
568
  if (hasMcpConfig) {
569
569
  cliLogger.info('🔧 Starting Claude Code with ServiceNow MCP servers...');
@@ -1918,10 +1918,10 @@ The MCP servers are automatically:
1918
1918
  If you need to manually activate MCP servers later:
1919
1919
  \`\`\`bash
1920
1920
  # For Mac/Linux:
1921
- claude --mcp-config .mcp.json .
1921
+ claude --mcp-config .mcp.json
1922
1922
 
1923
1923
  # For Windows:
1924
- claude.exe --mcp-config .mcp.json .
1924
+ claude.exe --mcp-config .mcp.json
1925
1925
  \`\`\`
1926
1926
 
1927
1927
  ## 💡 Usage Examples
@@ -0,0 +1,3 @@
1
+ {
2
+ "mcpServers": {}
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "3.4.27",
3
+ "version": "3.4.28",
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",
@@ -0,0 +1,9 @@
1
+ {
2
+ "mcpServers": {
3
+ "filesystem": {
4
+ "command": "npx",
5
+ "args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/nielsvanderwerf/Projects"],
6
+ "description": "Filesystem access server"
7
+ }
8
+ }
9
+ }
package/test-mcp.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "mcpServers": {
3
+ "servicenow-deployment": {
4
+ "command": "node",
5
+ "args": [
6
+ "/Users/nielsvanderwerf/Projects/snow-flow-dev/snow-flow/dist/mcp/servicenow-deployment-mcp.js"
7
+ ],
8
+ "description": "Test deployment server"
9
+ }
10
+ }
11
+ }
package/test.txt ADDED
@@ -0,0 +1 @@
1
+ test file content