@usex/mikrotik-mcp 3.4.0 → 3.5.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 +317 -77
- package/dist/index.js +24 -5
- package/dist/ui/observability.html +67 -14
- package/package.json +8 -2
- package/schemas/tool-catalog.json +2 -2
- package/schemas/tools/create_filter_rule.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usex/mikrotik-mcp",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "MCP server for MikroTik RouterOS — 660+ tools over SSH for firewall, NAT, routing, DHCP, DNS, WireGuard, wireless, QoS and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -82,18 +82,24 @@
|
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
84
|
"@resvg/resvg-js": "^2.6.2",
|
|
85
|
+
"@tailwindcss/vite": "^4.3.1",
|
|
85
86
|
"@types/bun": "latest",
|
|
86
|
-
"@types/node": "^26.0.
|
|
87
|
+
"@types/node": "^26.0.1",
|
|
87
88
|
"@types/react": "^19.2.17",
|
|
88
89
|
"@types/react-dom": "^19.2.3",
|
|
89
90
|
"@types/ssh2": "^1.15.5",
|
|
90
91
|
"@types/update-notifier": "^6.0.8",
|
|
91
92
|
"bunup": "^0.16.32",
|
|
93
|
+
"class-variance-authority": "^0.7.1",
|
|
94
|
+
"clsx": "^2.1.1",
|
|
92
95
|
"gsap": "^3.15.0",
|
|
93
96
|
"prettier": "^3.8.4",
|
|
94
97
|
"react": "^19.2.7",
|
|
95
98
|
"react-dom": "^19.2.7",
|
|
99
|
+
"recharts": "^3.9.0",
|
|
96
100
|
"release-it": "^20.2.0",
|
|
101
|
+
"tailwind-merge": "^3.6.0",
|
|
102
|
+
"tailwindcss": "^4.3.1",
|
|
97
103
|
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
|
|
98
104
|
"vite-plus": "latest"
|
|
99
105
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"generated": "by scripts/gen-schemas.ts — do not edit by hand",
|
|
5
5
|
"toolCount": 670,
|
|
6
6
|
"tools": [
|
|
@@ -9335,7 +9335,7 @@
|
|
|
9335
9335
|
"type": "string"
|
|
9336
9336
|
},
|
|
9337
9337
|
"place_before": {
|
|
9338
|
-
"description": "
|
|
9338
|
+
"description": "Insert before this position. Either a bare ordinal/row number (e.g. \"0\", \"13\") OR a CURRENT internal .id (\"*N\") from list_filter_rules. Note: a \"*N\" .id is hexadecimal and reassigned over time — it is NOT the row number, so \"*13\" ≠ the 13th rule.",
|
|
9339
9339
|
"type": "string"
|
|
9340
9340
|
}
|
|
9341
9341
|
},
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"type": "string"
|
|
79
79
|
},
|
|
80
80
|
"place_before": {
|
|
81
|
-
"description": "
|
|
81
|
+
"description": "Insert before this position. Either a bare ordinal/row number (e.g. \"0\", \"13\") OR a CURRENT internal .id (\"*N\") from list_filter_rules. Note: a \"*N\" .id is hexadecimal and reassigned over time — it is NOT the row number, so \"*13\" ≠ the 13th rule.",
|
|
82
82
|
"type": "string"
|
|
83
83
|
}
|
|
84
84
|
},
|