forked from mangopudding/mcp-server-iru-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mcp-server-iru-api",
"version": "1.0.0",
"description": "Iru (formerly Kandji) MCP Server - AI-driven device management through Model Context Protocol",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "./test/scripts/run-all-tests.sh",
"test:all": "npx tsx test/integration/test-all-tools.ts",
"test:users": "npx tsx test/integration/test-users.ts",
"test:vulnerabilities": "npx tsx test/integration/test-vulnerabilities.ts",
"test:threats": "npx tsx test/integration/test-threats.ts",
"test:tags": "npx tsx test/integration/test-tags.ts",
"test:licensing": "npx tsx test/integration/test-licensing.ts",
"verify": "npx tsx troubleshooting/verify-api-access.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"check": "npm run lint && npm run format:check",
"prepare": "husky"
},
"keywords": [
"mcp",
"model-context-protocol",
"iru",
"kandji",
"mdm",
"device-management",
"fastmcp"
],
"author": "Simon Tin-Yul Kok",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"fastmcp": "^1.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.6",
"prettier": "^3.4.2",
"ts-jest": "^29.4.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"test/**/*.ts": [
"prettier --write"
]
}
}