snow-flow 3.1.3 โ 3.2.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 +193 -339
- package/dist/dynamic-version.js +1 -1
- package/dist/mcp/servicenow-automation-mcp.js +6 -6
- package/dist/mcp/servicenow-change-virtualagent-pa-mcp.d.ts +8 -0
- package/dist/mcp/servicenow-change-virtualagent-pa-mcp.js +1232 -0
- package/dist/mcp/servicenow-cmdb-event-hr-csm-devops-mcp.d.ts +8 -0
- package/dist/mcp/servicenow-cmdb-event-hr-csm-devops-mcp.js +1416 -0
- package/dist/mcp/servicenow-flow-workspace-mobile-mcp.d.ts +8 -0
- package/dist/mcp/servicenow-flow-workspace-mobile-mcp.js +1192 -0
- package/package.json +2 -2
|
@@ -219,7 +219,7 @@ class ServiceNowAutomationMCP {
|
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
name: 'snow_create_atf_test',
|
|
222
|
-
description: '
|
|
222
|
+
description: 'Creates an Automated Test Framework (ATF) test for automated testing of ServiceNow applications and configurations using the sys_atf_test table.',
|
|
223
223
|
inputSchema: {
|
|
224
224
|
type: 'object',
|
|
225
225
|
properties: {
|
|
@@ -235,7 +235,7 @@ class ServiceNowAutomationMCP {
|
|
|
235
235
|
},
|
|
236
236
|
{
|
|
237
237
|
name: 'snow_create_atf_test_step',
|
|
238
|
-
description: '
|
|
238
|
+
description: 'Adds a test step to an existing ATF test. Steps define the actions and assertions for testing using the sys_atf_step table.',
|
|
239
239
|
inputSchema: {
|
|
240
240
|
type: 'object',
|
|
241
241
|
properties: {
|
|
@@ -251,7 +251,7 @@ class ServiceNowAutomationMCP {
|
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
name: 'snow_execute_atf_test',
|
|
254
|
-
description: '
|
|
254
|
+
description: 'Executes an ATF test or test suite and returns the results. Tests run asynchronously in ServiceNow using sys_atf_test_result table.',
|
|
255
255
|
inputSchema: {
|
|
256
256
|
type: 'object',
|
|
257
257
|
properties: {
|
|
@@ -264,7 +264,7 @@ class ServiceNowAutomationMCP {
|
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
name: 'snow_get_atf_results',
|
|
267
|
-
description: '
|
|
267
|
+
description: 'Retrieves ATF test execution results including pass/fail status, error details, and execution time from sys_atf_test_result table.',
|
|
268
268
|
inputSchema: {
|
|
269
269
|
type: 'object',
|
|
270
270
|
properties: {
|
|
@@ -276,7 +276,7 @@ class ServiceNowAutomationMCP {
|
|
|
276
276
|
},
|
|
277
277
|
{
|
|
278
278
|
name: 'snow_create_atf_test_suite',
|
|
279
|
-
description: '
|
|
279
|
+
description: 'Creates an ATF test suite to group and run multiple tests together using sys_atf_test_suite table.',
|
|
280
280
|
inputSchema: {
|
|
281
281
|
type: 'object',
|
|
282
282
|
properties: {
|
|
@@ -291,7 +291,7 @@ class ServiceNowAutomationMCP {
|
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
name: 'snow_discover_atf_tests',
|
|
294
|
-
description: '
|
|
294
|
+
description: 'Discovers existing ATF tests and test suites in the instance with filtering options from sys_atf_test and sys_atf_test_suite tables.',
|
|
295
295
|
inputSchema: {
|
|
296
296
|
type: 'object',
|
|
297
297
|
properties: {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* ServiceNow Change Management, Virtual Agent & Performance Analytics MCP Server
|
|
4
|
+
* Handles change requests, chatbot conversations, and performance analytics
|
|
5
|
+
* Uses official ServiceNow REST APIs
|
|
6
|
+
*/
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=servicenow-change-virtualagent-pa-mcp.d.ts.map
|