servicenow-mcp-server 2.1.0 → 2.1.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/.claude/settings.local.json +5 -1
- package/package.json +2 -2
- package/server.json +57 -0
|
@@ -62,7 +62,11 @@
|
|
|
62
62
|
"Bash(git config:*)",
|
|
63
63
|
"Bash(git remote set-url:*)",
|
|
64
64
|
"Bash(git mv:*)",
|
|
65
|
-
"WebFetch(domain:happy-tech.biz)"
|
|
65
|
+
"WebFetch(domain:happy-tech.biz)",
|
|
66
|
+
"Bash(brew install:*)",
|
|
67
|
+
"Bash(mcp-publisher init:*)",
|
|
68
|
+
"Bash(mcp-publisher login:*)",
|
|
69
|
+
"Bash(mcp-publisher publish:*)"
|
|
66
70
|
],
|
|
67
71
|
"deny": [],
|
|
68
72
|
"ask": []
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "servicenow-mcp-server",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Multi-instance ServiceNow MCP server with 40+ tools, natural language search, and local script development",
|
|
5
5
|
"main": "src/server.js",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"mcpName": "io.github.
|
|
7
|
+
"mcpName": "io.github.nickzitzer/servicenow-nodejs",
|
|
8
8
|
"bin": {
|
|
9
9
|
"servicenow-mcp-server": "./src/stdio-server.js"
|
|
10
10
|
},
|
package/server.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
|
|
3
|
+
"name": "io.github.nickzitzer/servicenow-nodejs",
|
|
4
|
+
"description": "Multi-instance ServiceNow MCP server with 40+ tools and intelligent schema discovery",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/Happy-Technologies-LLC/mcp-servicenow-nodejs",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "2.1.1",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "servicenow-mcp-server",
|
|
14
|
+
"version": "2.1.1",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"environmentVariables": [
|
|
19
|
+
{
|
|
20
|
+
"description": "ServiceNow instance URL (e.g., https://dev123456.service-now.com)",
|
|
21
|
+
"isRequired": true,
|
|
22
|
+
"format": "string",
|
|
23
|
+
"isSecret": false,
|
|
24
|
+
"name": "SERVICENOW_INSTANCE_URL"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"description": "ServiceNow username",
|
|
28
|
+
"isRequired": true,
|
|
29
|
+
"format": "string",
|
|
30
|
+
"isSecret": false,
|
|
31
|
+
"name": "SERVICENOW_USERNAME"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"description": "ServiceNow password",
|
|
35
|
+
"isRequired": true,
|
|
36
|
+
"format": "string",
|
|
37
|
+
"isSecret": true,
|
|
38
|
+
"name": "SERVICENOW_PASSWORD"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"description": "Authentication type (default: basic)",
|
|
42
|
+
"isRequired": false,
|
|
43
|
+
"format": "string",
|
|
44
|
+
"isSecret": false,
|
|
45
|
+
"name": "SERVICENOW_AUTH_TYPE"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"description": "Specific instance name from config file (optional)",
|
|
49
|
+
"isRequired": false,
|
|
50
|
+
"format": "string",
|
|
51
|
+
"isSecret": false,
|
|
52
|
+
"name": "SERVICENOW_INSTANCE"
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|