-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.76 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
76
77
78
{
"name": "@solomonneas/librenms-mcp",
"version": "0.2.0",
"description": "librenmsctrl operator CLI for LibreNMS with an MCP-compatible adapter",
"keywords": [
"librenms",
"librenmsctrl",
"network-monitoring",
"observability",
"mcp",
"model-context-protocol"
],
"type": "module",
"openclaw": {
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2",
"minGatewayVersion": "2026.3.24-beta.2"
},
"build": {
"openclawVersion": "2026.5.17",
"pluginSdkVersion": "2026.5.17"
}
},
"bin": {
"librenmsctrl": "./dist/cli.js",
"librenmsctl": "./dist/cli.js",
"librenms-mcp": "./dist/mcp-bin.js"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup",
"start": "node dist/cli.js mcp",
"dev": "tsx mcp-bin.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"files": [
"dist",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"dependencies": {
"@lidless-labs/effect-operator-kit": "github:lidless-labs/effect-operator-kit#be71030",
"@modelcontextprotocol/sdk": "^1.29.0",
"@sinclair/typebox": "^0.34.0",
"effect": "^3.21.4",
"undici": "^8.3.0"
},
"peerDependencies": {
"openclaw": "^2026.4.22"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.6.2",
"openclaw": "^2026.4.22",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^7.0.2",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lidless-labs/librenmsctrl"
}
}