@usex/mikrotik-mcp 5.0.0 → 5.2.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/dist/cli.js +24 -4
- package/dist/index.js +1 -1
- package/dist/shared/{cli-2dj736ma.js → cli-mqb3rqfy.js} +27 -5
- package/dist/shared/{cli-vvy7yfyg.js → cli-s9fc4c7j.js} +1 -1
- package/dist/shared/{library-13dhfdnq.js → library-tq8phch8.js} +31 -5
- package/dist/shared/{library-syt5fmtj.js → library-xgy70fsf.js} +1 -1
- package/dist/ui/observability.html +65 -64
- package/package.json +4 -4
- package/schemas/tool-catalog.json +8 -2
- package/schemas/tools/scan_for_attacks.json +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usex/mikrotik-mcp",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "MCP server for MikroTik RouterOS — 780+ tools over SSH for firewall, NAT, routing, DHCP, DNS, WireGuard, wireless, QoS and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -100,8 +100,8 @@
|
|
|
100
100
|
"@types/bun": "latest",
|
|
101
101
|
"@types/figlet": "^1.7.0",
|
|
102
102
|
"@types/node": "^26.1.2",
|
|
103
|
-
"@types/react": "^19.2.
|
|
104
|
-
"@types/react-dom": "^19.2.
|
|
103
|
+
"@types/react": "^19.2.18",
|
|
104
|
+
"@types/react-dom": "^19.2.4",
|
|
105
105
|
"@types/ssh2": "^1.15.5",
|
|
106
106
|
"@types/update-notifier": "^6.0.8",
|
|
107
107
|
"bunup": "^0.16.32",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"react": "^19.2.8",
|
|
115
115
|
"react-dom": "^19.2.8",
|
|
116
116
|
"recharts": "^3.10.1",
|
|
117
|
-
"release-it": "^21.0.
|
|
117
|
+
"release-it": "^21.0.1",
|
|
118
118
|
"sonner": "^2.0.7",
|
|
119
119
|
"tailwind-merge": "^3.6.0",
|
|
120
120
|
"tailwindcss": "^4.3.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"generated": "by scripts/gen-schemas.ts — do not edit by hand",
|
|
5
5
|
"toolCount": 885,
|
|
6
6
|
"tools": [
|
|
@@ -14861,7 +14861,7 @@
|
|
|
14861
14861
|
"idempotentHint": true,
|
|
14862
14862
|
"openWorldHint": false
|
|
14863
14863
|
},
|
|
14864
|
-
"description": "Reads recent logs from every configured device, runs the attack detectors, and correlates what they find into incidents — brute force, credential spraying, a login that SUCCEEDED after failures, port scans, management ports answering the internet, and unexplained changes to security-relevant configuration. Read-only: it changes nothing on any device. One source hitting several routers is reported as ONE incident, which is the pattern no single router can see. Detectors whose input is missing say so and name the fix, rather than reporting a quiet network.",
|
|
14864
|
+
"description": "Reads recent logs from every configured device, runs the attack detectors, and correlates what they find into incidents — brute force, credential spraying, a login that SUCCEEDED after failures, port scans, management ports answering the internet, and unexplained changes to security-relevant configuration. Read-only: it changes nothing on any device. One source hitting several routers is reported as ONE incident, which is the pattern no single router can see. Detectors whose input is missing say so and name the fix, rather than reporting a quiet network. Pass `devices` for one router, or `online_only` to skip the ones currently unreachable — any device left out is named in the result.",
|
|
14865
14865
|
"inputSchema": {
|
|
14866
14866
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
14867
14867
|
"type": "object",
|
|
@@ -14873,6 +14873,11 @@
|
|
|
14873
14873
|
"type": "string"
|
|
14874
14874
|
}
|
|
14875
14875
|
},
|
|
14876
|
+
"online_only": {
|
|
14877
|
+
"default": false,
|
|
14878
|
+
"description": "Skip devices the health probe currently reports as unreachable. A device not yet probed is still scanned — never probed is not the same as known-offline.",
|
|
14879
|
+
"type": "boolean"
|
|
14880
|
+
},
|
|
14876
14881
|
"window_minutes": {
|
|
14877
14882
|
"description": "How far back to read. Default from config (10).",
|
|
14878
14883
|
"type": "integer",
|
|
@@ -14880,6 +14885,7 @@
|
|
|
14880
14885
|
"maximum": 1440
|
|
14881
14886
|
}
|
|
14882
14887
|
},
|
|
14888
|
+
"required": ["online_only"],
|
|
14883
14889
|
"additionalProperties": false
|
|
14884
14890
|
}
|
|
14885
14891
|
},
|
|
@@ -10,6 +10,11 @@
|
|
|
10
10
|
"type": "string"
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
|
+
"online_only": {
|
|
14
|
+
"default": false,
|
|
15
|
+
"description": "Skip devices the health probe currently reports as unreachable. A device not yet probed is still scanned — never probed is not the same as known-offline.",
|
|
16
|
+
"type": "boolean"
|
|
17
|
+
},
|
|
13
18
|
"window_minutes": {
|
|
14
19
|
"description": "How far back to read. Default from config (10).",
|
|
15
20
|
"type": "integer",
|
|
@@ -17,5 +22,6 @@
|
|
|
17
22
|
"maximum": 1440
|
|
18
23
|
}
|
|
19
24
|
},
|
|
25
|
+
"required": ["online_only"],
|
|
20
26
|
"additionalProperties": false
|
|
21
27
|
}
|