@usex/mikrotik-mcp 3.31.0 → 3.31.1
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 +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -27109,7 +27109,7 @@ function registerPrompts(server) {
|
|
|
27109
27109
|
// package.json
|
|
27110
27110
|
var package_default = {
|
|
27111
27111
|
name: "@usex/mikrotik-mcp",
|
|
27112
|
-
version: "3.31.
|
|
27112
|
+
version: "3.31.1",
|
|
27113
27113
|
description: "MCP server for MikroTik RouterOS \u2014 660+ tools over SSH for firewall, NAT, routing, DHCP, DNS, WireGuard, wireless, QoS and more.",
|
|
27114
27114
|
keywords: [
|
|
27115
27115
|
"ai",
|
|
@@ -27283,6 +27283,7 @@ to use the default. Use list_mikrotik_devices to see them. For cross-device work
|
|
|
27283
27283
|
(e.g. a tunnel between two routers) configure each side by passing the matching
|
|
27284
27284
|
"device", then verify reachability with ping/traceroute from each end.`;
|
|
27285
27285
|
function createServer(opts = {}) {
|
|
27286
|
+
process.title = `Mikrotik MCP Server v${VERSION}`;
|
|
27286
27287
|
const { names, default: defaultDevice } = listDevices();
|
|
27287
27288
|
const readOnly = getConfig().readOnly;
|
|
27288
27289
|
const instructions = names.length > 1 ? INSTRUCTIONS + MULTI_DEVICE_INSTRUCTIONS.replace("{{names}}", names.join(", ")).replace("{{default}}", defaultDevice) : INSTRUCTIONS;
|
package/dist/index.js
CHANGED
|
@@ -25087,7 +25087,7 @@ function selectToolModules(filter = {}, catalog = moduleCatalog) {
|
|
|
25087
25087
|
// package.json
|
|
25088
25088
|
var package_default = {
|
|
25089
25089
|
name: "@usex/mikrotik-mcp",
|
|
25090
|
-
version: "3.31.
|
|
25090
|
+
version: "3.31.1",
|
|
25091
25091
|
description: "MCP server for MikroTik RouterOS \u2014 660+ tools over SSH for firewall, NAT, routing, DHCP, DNS, WireGuard, wireless, QoS and more.",
|
|
25092
25092
|
keywords: [
|
|
25093
25093
|
"ai",
|
|
@@ -25261,6 +25261,7 @@ to use the default. Use list_mikrotik_devices to see them. For cross-device work
|
|
|
25261
25261
|
(e.g. a tunnel between two routers) configure each side by passing the matching
|
|
25262
25262
|
"device", then verify reachability with ping/traceroute from each end.`;
|
|
25263
25263
|
function createServer(opts = {}) {
|
|
25264
|
+
process.title = `Mikrotik MCP Server v${VERSION}`;
|
|
25264
25265
|
const { names, default: defaultDevice } = listDevices();
|
|
25265
25266
|
const readOnly = getConfig().readOnly;
|
|
25266
25267
|
const instructions = names.length > 1 ? INSTRUCTIONS + MULTI_DEVICE_INSTRUCTIONS.replace("{{names}}", names.join(", ")).replace("{{default}}", defaultDevice) : INSTRUCTIONS;
|
package/package.json
CHANGED