-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.01 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
73
74
75
{
"name": "logicmonitor-api-mcp",
"version": "2.1.2",
"description": "MCP server for LogicMonitor API integration",
"main": "dist/index.js",
"type": "module",
"bin": {
"logicmonitor-api-mcp": "dist/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"generate:schemas": "orval",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"eval": "NODE_OPTIONS=--experimental-vm-modules npx tsx tests/eval/run-eval.ts",
"eval:ci": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=tests/eval",
"lint": "eslint src --ext .ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"logicmonitor",
"api",
"monitoring",
"infrastructure",
"claude",
"ai-tools"
],
"author": "Steve Villardi <steve.villardi@logicmonitor.com>",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/logicmonitor/logicmonitor-api-mcp.git"
},
"bugs": {
"url": "https://github.com/logicmonitor/logicmonitor-api-mcp/issues"
},
"homepage": "https://github.com/logicmonitor/logicmonitor-api-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"examples/**/*"
],
"dependencies": {
"@eslint/js": "^10.0.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"axios": "^1.16.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.4.1",
"winston": "^3.19.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^10.3.0",
"jest": "^30.3.0",
"openai": "^6.35.0",
"orval": "^8.9.1",
"ts-jest": "^29.4.9",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}