servicenow-mcp 1.1.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.
- package/.env.example +16 -0
- package/LICENSE +21 -0
- package/README.md +189 -0
- package/dist/auth-browser.d.ts +21 -0
- package/dist/auth-browser.js +161 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +2759 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "servicenow-mcp",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "MCP server for ServiceNow ITSM with browser-based SSO authentication",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"author": "Timothy Schwarz",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/schwarztim/servicenow-mcp.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/schwarztim/servicenow-mcp/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/schwarztim/servicenow-mcp#readme",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"mcp",
|
|
20
|
+
"model-context-protocol",
|
|
21
|
+
"servicenow",
|
|
22
|
+
"itsm",
|
|
23
|
+
"sso",
|
|
24
|
+
"browser-automation",
|
|
25
|
+
"playwright",
|
|
26
|
+
"claude",
|
|
27
|
+
"ai",
|
|
28
|
+
"llm"
|
|
29
|
+
],
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=18.0.0"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"README.md",
|
|
36
|
+
"LICENSE",
|
|
37
|
+
".env.example"
|
|
38
|
+
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "tsc",
|
|
41
|
+
"start": "node dist/index.js",
|
|
42
|
+
"dev": "tsx src/index.ts",
|
|
43
|
+
"auth": "tsx src/auth-browser.ts",
|
|
44
|
+
"prepublishOnly": "npm run build",
|
|
45
|
+
"postinstall": "playwright install chromium"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
49
|
+
"playwright": "^1.50.0",
|
|
50
|
+
"zod": "^3.22.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/node": "^22.0.0",
|
|
54
|
+
"typescript": "^5.3.0",
|
|
55
|
+
"tsx": "^4.7.0"
|
|
56
|
+
}
|
|
57
|
+
}
|