snow-flow 3.2.3 → 3.3.1
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/README.md +14 -0
- package/dist/dynamic-version.js +1 -1
- package/dist/mcp/servicenow-change-virtualagent-pa-mcp-enhanced.d.ts +7 -0
- package/dist/mcp/servicenow-change-virtualagent-pa-mcp-enhanced.js +816 -0
- package/dist/mcp/servicenow-cmdb-event-hr-csm-devops-mcp-enhanced.d.ts +7 -0
- package/dist/mcp/servicenow-cmdb-event-hr-csm-devops-mcp-enhanced.js +1112 -0
- package/dist/mcp/servicenow-flow-workspace-mobile-mcp-enhanced.d.ts +7 -0
- package/dist/mcp/servicenow-flow-workspace-mobile-mcp-enhanced.js +860 -0
- package/dist/mcp/servicenow-knowledge-catalog-mcp-enhanced.d.ts +7 -0
- package/dist/mcp/servicenow-knowledge-catalog-mcp-enhanced.js +709 -0
- package/dist/mcp/shared/enhanced-base-mcp-server.d.ts +53 -0
- package/dist/mcp/shared/enhanced-base-mcp-server.js +168 -0
- package/dist/mcp/shared/mcp-logger.d.ts +80 -0
- package/dist/mcp/shared/mcp-logger.js +190 -0
- package/dist/utils/servicenow-client-with-tracking.d.ts +38 -0
- package/dist/utils/servicenow-client-with-tracking.js +137 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -44,6 +44,20 @@ Snow-Flow connects directly to ServiceNow instances through OAuth 2.0 authentica
|
|
|
44
44
|
- Natural language interface for ServiceNow operations
|
|
45
45
|
- Machine learning capabilities using TensorFlow.js
|
|
46
46
|
- Process automation and workflow optimization
|
|
47
|
+
- Real-time logging and token tracking for API operations
|
|
48
|
+
|
|
49
|
+
### API Operation Visibility
|
|
50
|
+
|
|
51
|
+
Snow-Flow displays detailed information during API calls:
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
⏳ Operation in progress... (2s elapsed, 150 tokens used)
|
|
55
|
+
🔄 API Call: GET /api/now/table/incident (10 records)
|
|
56
|
+
📊 Tokens used: 450 (in: 100, out: 350)
|
|
57
|
+
✅ Operation complete in 3 seconds
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
MCP operations run in separate processes and their logs are sent to stderr for visibility in the console.
|
|
47
61
|
|
|
48
62
|
## ServiceNow API Integration
|
|
49
63
|
|
package/dist/dynamic-version.js
CHANGED
|
@@ -36,7 +36,7 @@ function getDynamicVersion() {
|
|
|
36
36
|
console.warn('Warning: Could not read version from package.json:', error);
|
|
37
37
|
}
|
|
38
38
|
// Fallback to hardcoded version
|
|
39
|
-
return '3.
|
|
39
|
+
return '3.3.1';
|
|
40
40
|
}
|
|
41
41
|
// Export a constant that uses the dynamic version
|
|
42
42
|
exports.VERSION = getDynamicVersion();
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* ServiceNow Change Management, Virtual Agent & Performance Analytics MCP Server - ENHANCED VERSION
|
|
4
|
+
* With logging, token tracking, and progress indicators
|
|
5
|
+
*/
|
|
6
|
+
export {};
|
|
7
|
+
//# sourceMappingURL=servicenow-change-virtualagent-pa-mcp-enhanced.d.ts.map
|