snow-flow 3.3.7 → 3.4.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.
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ServiceNow System Properties MCP Server
|
|
3
|
+
*
|
|
4
|
+
* Provides comprehensive system property management through official ServiceNow APIs
|
|
5
|
+
* Uses the standard Table API on sys_properties table
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* ServiceNow System Properties MCP Server
|
|
9
|
+
* Manages system properties through official ServiceNow REST APIs
|
|
10
|
+
*/
|
|
11
|
+
export declare class ServiceNowSystemPropertiesMCP {
|
|
12
|
+
private server;
|
|
13
|
+
private client;
|
|
14
|
+
private oauth;
|
|
15
|
+
private propertyCache;
|
|
16
|
+
constructor();
|
|
17
|
+
private setupHandlers;
|
|
18
|
+
private setupTools;
|
|
19
|
+
/**
|
|
20
|
+
* Get a system property value
|
|
21
|
+
*/
|
|
22
|
+
private getProperty;
|
|
23
|
+
/**
|
|
24
|
+
* Set or create a system property
|
|
25
|
+
*/
|
|
26
|
+
private setProperty;
|
|
27
|
+
/**
|
|
28
|
+
* List system properties
|
|
29
|
+
*/
|
|
30
|
+
private listProperties;
|
|
31
|
+
/**
|
|
32
|
+
* Delete a system property
|
|
33
|
+
*/
|
|
34
|
+
private deleteProperty;
|
|
35
|
+
/**
|
|
36
|
+
* Search properties
|
|
37
|
+
*/
|
|
38
|
+
private searchProperties;
|
|
39
|
+
/**
|
|
40
|
+
* Bulk get properties
|
|
41
|
+
*/
|
|
42
|
+
private bulkGetProperties;
|
|
43
|
+
/**
|
|
44
|
+
* Bulk set properties
|
|
45
|
+
*/
|
|
46
|
+
private bulkSetProperties;
|
|
47
|
+
/**
|
|
48
|
+
* Export properties
|
|
49
|
+
*/
|
|
50
|
+
private exportProperties;
|
|
51
|
+
/**
|
|
52
|
+
* Import properties
|
|
53
|
+
*/
|
|
54
|
+
private importProperties;
|
|
55
|
+
/**
|
|
56
|
+
* Validate property value
|
|
57
|
+
*/
|
|
58
|
+
private validateProperty;
|
|
59
|
+
/**
|
|
60
|
+
* Get property categories
|
|
61
|
+
*/
|
|
62
|
+
private getCategories;
|
|
63
|
+
/**
|
|
64
|
+
* Get property audit history
|
|
65
|
+
*/
|
|
66
|
+
private getPropertyHistory;
|
|
67
|
+
start(): Promise<void>;
|
|
68
|
+
}
|
|
69
|
+
//# sourceMappingURL=servicenow-system-properties-mcp.d.ts.map
|