@usex/mikrotik-mcp 3.57.0 → 3.58.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.
@@ -386,7 +386,8 @@ var MikrotikConfigSchema = z.object({
386
386
  readOnly: z.boolean().default(false),
387
387
  tools: ToolFilterSchema.default(() => ToolFilterSchema.parse({})),
388
388
  memory: MemoryConfigSchema.default(() => MemoryConfigSchema.parse({})),
389
- backupDir: z.string().optional()
389
+ backupDir: z.string().optional(),
390
+ disableUpdateCheck: z.boolean().default(false)
390
391
  });
391
392
  function env(...names) {
392
393
  for (const n of names) {
@@ -522,6 +523,7 @@ function loadConfig(argv = process.argv.slice(2)) {
522
523
  };
523
524
  const isTruthy = (v) => /^(1|true|yes|on)$/i.test(v ?? "");
524
525
  const readOnly = isTruthy(pick("read-only", "MIKROTIK_READ_ONLY"));
526
+ const disableUpdateCheck = isTruthy(pick("disable-update-check", "MIKROTIK_DISABLE_UPDATE_CHECK"));
525
527
  const csv = (v) => v === undefined ? undefined : v.split(",").map((s) => s.trim()).filter(Boolean);
526
528
  const tools = {
527
529
  enabledModules: csv(pick("tools-enabled-modules", "MIKROTIK_TOOLS__ENABLED_MODULES")),
@@ -561,6 +563,7 @@ function loadConfig(argv = process.argv.slice(2)) {
561
563
  mcp,
562
564
  dashboard,
563
565
  readOnly,
566
+ disableUpdateCheck,
564
567
  tools,
565
568
  ssh,
566
569
  memory,
@@ -8257,7 +8260,7 @@ var cache = null;
8257
8260
  async function gateway() {
8258
8261
  if (cache)
8259
8262
  return cache;
8260
- const { moduleCatalog } = await import("./library-jve65pzw.js");
8263
+ const { moduleCatalog } = await import("./library-41tn0b6b.js");
8261
8264
  const forIndex = [];
8262
8265
  const byName = new Map;
8263
8266
  for (const mod of moduleCatalog) {
@@ -24775,8 +24778,227 @@ ${result}`;
24775
24778
  })
24776
24779
  ];
24777
24780
 
24778
- // src/tools/threat-feed.ts
24781
+ // src/tools/server-pulse.ts
24779
24782
  import { z as z104 } from "zod";
24783
+
24784
+ // src/core/update-check.ts
24785
+ import { existsSync as existsSync3, mkdirSync as mkdirSync4, readFileSync as readFileSync6, writeFileSync as writeFileSync2 } from "fs";
24786
+ import { homedir as homedir2 } from "os";
24787
+ import { dirname as dirname4, join as join6 } from "path";
24788
+
24789
+ // src/version.ts
24790
+ import { readFileSync as readFileSync5 } from "fs";
24791
+ import { join as join5 } from "path";
24792
+ var pkg = JSON.parse(readFileSync5(join5(PROJECT_ROOT, "package.json"), "utf-8"));
24793
+ var VERSION = pkg.version ?? "0.0.0";
24794
+ var WEBSITE_URL = pkg.homepage ?? "";
24795
+ var LOGO_URL = pkg.logoIcon ?? "";
24796
+ var SERVER_TITLE = "MikroTik MCP";
24797
+ var SERVER_DESCRIPTION = pkg.description ?? "";
24798
+ var SERVER_NAME = "mikrotik-mcp";
24799
+
24800
+ // src/core/update-check.ts
24801
+ var GITHUB_API = "https://api.github.com/repos/ali-master/mikrotik-mcp/releases/latest";
24802
+ var MEMORY_CACHE_TTL = 15 * 60 * 1000;
24803
+ var FILE_CACHE_TTL = 6 * 60 * 60 * 1000;
24804
+ var CACHE_PATH = join6(homedir2(), ".mikrotik-mcp", "update-check.json");
24805
+ function compareVersions(a, b) {
24806
+ const pa = a.replace(/^v/, "").split(".").map(Number);
24807
+ const pb = b.replace(/^v/, "").split(".").map(Number);
24808
+ for (let i = 0;i < Math.max(pa.length, pb.length); i++) {
24809
+ const diff = (pa[i] ?? 0) - (pb[i] ?? 0);
24810
+ if (diff !== 0)
24811
+ return diff;
24812
+ }
24813
+ return 0;
24814
+ }
24815
+ var memoryCache = null;
24816
+ function loadFileCache(maxAge = FILE_CACHE_TTL) {
24817
+ try {
24818
+ const raw = readFileSync6(CACHE_PATH, "utf-8");
24819
+ const parsed = JSON.parse(raw);
24820
+ if (!parsed?.data?.version || typeof parsed.fetchedAt !== "number")
24821
+ return null;
24822
+ if (Date.now() - parsed.fetchedAt > maxAge)
24823
+ return null;
24824
+ return parsed.data;
24825
+ } catch {
24826
+ return null;
24827
+ }
24828
+ }
24829
+ function loadFileCacheSync() {
24830
+ return loadFileCache();
24831
+ }
24832
+ function saveFileCache(data) {
24833
+ try {
24834
+ const dir = dirname4(CACHE_PATH);
24835
+ if (!existsSync3(dir))
24836
+ mkdirSync4(dir, { recursive: true });
24837
+ writeFileSync2(CACHE_PATH, JSON.stringify({ data, fetchedAt: Date.now() }));
24838
+ } catch {}
24839
+ }
24840
+ async function fetchLatestRelease() {
24841
+ if (memoryCache && Date.now() - memoryCache.fetchedAt < MEMORY_CACHE_TTL) {
24842
+ return memoryCache.data;
24843
+ }
24844
+ const fileCached = loadFileCache();
24845
+ if (fileCached) {
24846
+ memoryCache = { data: fileCached, fetchedAt: Date.now() };
24847
+ return fileCached;
24848
+ }
24849
+ const res = await fetch(GITHUB_API, {
24850
+ headers: {
24851
+ accept: "application/vnd.github+json",
24852
+ "user-agent": `mikrotik-mcp/${VERSION}`
24853
+ }
24854
+ });
24855
+ if (!res.ok)
24856
+ throw new Error(`GitHub API ${res.status}`);
24857
+ const gh = await res.json();
24858
+ const latestVersion = gh.tag_name.replace(/^v/, "");
24859
+ const data = {
24860
+ version: latestVersion,
24861
+ name: gh.name || `v${latestVersion}`,
24862
+ body: gh.body || "",
24863
+ publishedAt: gh.published_at,
24864
+ url: gh.html_url,
24865
+ isNewer: compareVersions(latestVersion, VERSION) > 0,
24866
+ currentVersion: VERSION
24867
+ };
24868
+ memoryCache = { data, fetchedAt: Date.now() };
24869
+ saveFileCache(data);
24870
+ return data;
24871
+ }
24872
+ async function checkForUpdate() {
24873
+ try {
24874
+ const release = await fetchLatestRelease();
24875
+ return { release, checkedAt: Date.now(), fromCache: false };
24876
+ } catch (e) {
24877
+ const stale = loadFileCache(Infinity);
24878
+ if (stale) {
24879
+ return { release: stale, checkedAt: Date.now(), fromCache: true };
24880
+ }
24881
+ return {
24882
+ release: null,
24883
+ checkedAt: Date.now(),
24884
+ fromCache: false,
24885
+ error: e instanceof Error ? e.message : String(e)
24886
+ };
24887
+ }
24888
+ }
24889
+ function assessFreshness(current, latest) {
24890
+ const ca = current.replace(/^v/, "").split(".").map(Number);
24891
+ const la = latest.replace(/^v/, "").split(".").map(Number);
24892
+ const majorDiff = (la[0] ?? 0) - (ca[0] ?? 0);
24893
+ const minorDiff = (la[1] ?? 0) - (ca[1] ?? 0);
24894
+ const patchDiff = (la[2] ?? 0) - (ca[2] ?? 0);
24895
+ if (majorDiff > 0)
24896
+ return "ancient";
24897
+ if (minorDiff > 1)
24898
+ return "stale";
24899
+ if (minorDiff === 1)
24900
+ return "aging";
24901
+ if (patchDiff > 1)
24902
+ return "aging";
24903
+ return "fresh";
24904
+ }
24905
+ function updateSummaryLine(release) {
24906
+ if (!release.isNewer)
24907
+ return null;
24908
+ return `Server update available: MikroTik MCP v${release.version} ` + `(you are running v${VERSION}). ` + `Call check_server_pulse for release notes and upgrade commands, ` + `or upgrade directly: bun i -g @usex/mikrotik-mcp@latest`;
24909
+ }
24910
+
24911
+ // src/tools/server-pulse.ts
24912
+ var UPGRADE_COMMANDS = {
24913
+ bunx: "bunx @usex/mikrotik-mcp@latest",
24914
+ npx: "npx @usex/mikrotik-mcp@latest",
24915
+ "bun global": "bun add -g @usex/mikrotik-mcp@latest",
24916
+ "npm global": "npm install -g @usex/mikrotik-mcp@latest"
24917
+ };
24918
+ function formatUptime(seconds) {
24919
+ const d = Math.floor(seconds / 86400);
24920
+ const h = Math.floor(seconds % 86400 / 3600);
24921
+ const m = Math.floor(seconds % 3600 / 60);
24922
+ const s = seconds % 60;
24923
+ const parts = [];
24924
+ if (d)
24925
+ parts.push(`${d}d`);
24926
+ if (h)
24927
+ parts.push(`${h}h`);
24928
+ if (m)
24929
+ parts.push(`${m}m`);
24930
+ parts.push(`${s}s`);
24931
+ return parts.join(" ");
24932
+ }
24933
+ function freshnessLabel(f) {
24934
+ const labels = {
24935
+ fresh: "UP TO DATE",
24936
+ aging: "SLIGHTLY BEHIND",
24937
+ stale: "UPDATE RECOMMENDED",
24938
+ ancient: "CRITICAL UPDATE NEEDED"
24939
+ };
24940
+ return labels[f];
24941
+ }
24942
+ function timeAgo(iso) {
24943
+ const diff = Date.now() - new Date(iso).getTime();
24944
+ const days = Math.floor(diff / 86400000);
24945
+ if (days < 1)
24946
+ return "today";
24947
+ if (days === 1)
24948
+ return "yesterday";
24949
+ if (days < 30)
24950
+ return `${days} days ago`;
24951
+ if (days < 365)
24952
+ return `${Math.floor(days / 30)} months ago`;
24953
+ return `${Math.floor(days / 365)} years ago`;
24954
+ }
24955
+ var serverPulseTools = [
24956
+ defineTool({
24957
+ name: "check_server_pulse",
24958
+ title: "Server Pulse & Update Check",
24959
+ annotations: READ,
24960
+ description: "Check the MCP server's own heartbeat: running version, whether a newer release " + "is available, release notes for the latest version, upgrade commands, and server " + "vitals (tool count, uptime). This is server self-awareness \u2014 no RouterOS device " + "is contacted. Call this when the user asks about the MCP server version, updates, " + "what's new, or 'is my server up to date'. Returns rich release notes from GitHub " + "so you can summarize what changed.",
24961
+ inputSchema: {
24962
+ include_release_notes: z104.boolean().optional().describe("Include the full GitHub release notes markdown (default true). " + "Set false for a compact version-only check.")
24963
+ },
24964
+ async handler(args) {
24965
+ const includeNotes = args.include_release_notes !== false;
24966
+ const result = await checkForUpdate();
24967
+ const uptime = Math.floor(process.uptime());
24968
+ const sections = [];
24969
+ const sep = "\u2500".repeat(50);
24970
+ sections.push(`SERVER PULSE \u2014 ${SERVER_TITLE} v${VERSION}`, sep, "Package: @usex/mikrotik-mcp", `Version: ${VERSION}`, `Uptime: ${formatUptime(uptime)}`, `Website: ${WEBSITE_URL}`);
24971
+ if (result.release) {
24972
+ const freshness = assessFreshness(VERSION, result.release.version);
24973
+ const label = freshnessLabel(freshness);
24974
+ const age = timeAgo(result.release.publishedAt);
24975
+ sections.push("", `UPDATE STATUS: ${label}`, sep, `Current: v${VERSION}`, `Latest: v${result.release.version} (${result.release.name})`, `Published: ${age}`, `Freshness: ${freshness.toUpperCase()}`);
24976
+ if (result.release.isNewer) {
24977
+ sections.push("", ">>> A newer version is available! <<<");
24978
+ } else {
24979
+ sections.push("", "You are running the latest version.");
24980
+ }
24981
+ if (result.release.isNewer) {
24982
+ sections.push("", "UPGRADE", sep);
24983
+ for (const [method, cmd] of Object.entries(UPGRADE_COMMANDS)) {
24984
+ sections.push(` ${method.padEnd(12)} ${cmd}`);
24985
+ }
24986
+ sections.push("", `Release: ${result.release.url}`);
24987
+ }
24988
+ if (includeNotes && result.release.body && result.release.isNewer) {
24989
+ sections.push("", `WHAT'S NEW IN v${result.release.version}`, sep, result.release.body);
24990
+ }
24991
+ } else {
24992
+ sections.push("", "UPDATE STATUS: UNKNOWN", sep, `Could not check for updates${result.error ? `: ${result.error}` : "."}`, `Current version: v${VERSION}`, result.fromCache ? "(showing cached data)" : "(no cached data available \u2014 check network connectivity)");
24993
+ }
24994
+ return sections.join(`
24995
+ `);
24996
+ }
24997
+ })
24998
+ ];
24999
+
25000
+ // src/tools/threat-feed.ts
25001
+ import { z as z105 } from "zod";
24780
25002
  var FEED_TAG = "threat-feed";
24781
25003
  var threatFeedTools = [
24782
25004
  defineTool({
@@ -24785,12 +25007,12 @@ var threatFeedTools = [
24785
25007
  annotations: WRITE,
24786
25008
  description: "Subscribes the router to an external threat-intelligence IP feed: installs a `/system script` " + "that fetches `url` and imports it into the `address_list`, a `/system scheduler` that re-runs it " + "every `interval`, and (when `drop=true`) a raw pre-conntrack drop for that list \u2014 a self-updating " + "blocklist (e.g. Spamhaus DROP, tor exit nodes, your own deny list). `url` MUST point to a " + "RouterOS `.rsc` file that populates the address-list. DEFAULTS TO A DRY RUN (`apply=false`); set " + "`apply=true` to install. Script/scheduler/rule are named/tagged `threat-feed-<name>` so " + "remove_threat_feed can undo them. Returns the plan or a build report.",
24787
25009
  inputSchema: {
24788
- name: z104.string().describe("Short feed id, e.g. 'spamhaus-drop'"),
24789
- url: z104.string().describe("HTTPS URL of a RouterOS .rsc address-list file"),
24790
- address_list: z104.string().default("threat-blocklist").describe("Address-list to populate"),
24791
- interval: z104.string().default("1h").describe("How often to refresh the feed"),
24792
- drop: z104.boolean().default(true).describe("Also add a raw drop rule for the address-list"),
24793
- apply: z104.boolean().default(false).describe("false = preview (default); true = install")
25010
+ name: z105.string().describe("Short feed id, e.g. 'spamhaus-drop'"),
25011
+ url: z105.string().describe("HTTPS URL of a RouterOS .rsc address-list file"),
25012
+ address_list: z105.string().default("threat-blocklist").describe("Address-list to populate"),
25013
+ interval: z105.string().default("1h").describe("How often to refresh the feed"),
25014
+ drop: z105.boolean().default(true).describe("Also add a raw drop rule for the address-list"),
25015
+ apply: z105.boolean().default(false).describe("false = preview (default); true = install")
24794
25016
  },
24795
25017
  async handler(a, ctx) {
24796
25018
  const id = `${FEED_TAG}-${a.name}`;
@@ -24827,7 +25049,7 @@ ${plan}`;
24827
25049
  title: "Remove Threat-Intel Feed",
24828
25050
  annotations: DESTRUCTIVE,
24829
25051
  description: "Removes a threat feed installed by subscribe_threat_feed: deletes its `/system scheduler` and " + "`/system script` (named `threat-feed-<name>`) and any raw drop rule tagged for it. Does NOT " + "flush the address-list entries themselves. Returns what was removed.",
24830
- inputSchema: { name: z104.string().describe("The feed id used when subscribing") },
25052
+ inputSchema: { name: z105.string().describe("The feed id used when subscribing") },
24831
25053
  async handler(a, ctx) {
24832
25054
  const id = `${FEED_TAG}-${a.name}`;
24833
25055
  ctx.info(`Removing threat feed ${id}`);
@@ -24849,7 +25071,7 @@ ${plan}`;
24849
25071
  ];
24850
25072
 
24851
25073
  // src/tools/sstp.ts
24852
- import { z as z105 } from "zod";
25074
+ import { z as z106 } from "zod";
24853
25075
  var sstpTools = [
24854
25076
  defineTool({
24855
25077
  name: "get_sstp_server",
@@ -24870,19 +25092,19 @@ ${result}`;
24870
25092
  annotations: WRITE_IDEMPOTENT,
24871
25093
  description: "Configure the global SSTP server listener (`/interface sstp-server server set`) \u2014 accepts/rejects incoming TLS VPN connections on this router. " + "Use to enable the server, bind a TLS certificate, change the TCP port, restrict authentication methods (comma-separated, e.g. `'mschap2,mschap1'`), set the default PPP profile, pin TLS version (`any` or `only-1.2`), or enforce client certificate verification. " + "This is a singleton write that modifies the server block, not a client interface. " + "To read the current server config use `get_sstp_server`. " + "To create outbound SSTP tunnels (this router dials out) use `create_sstp_client`; for L2TP outbound use `create_l2tp_client`, for OpenVPN use `create_ovpn_client`, for PPTP use `create_pptp_client`. " + "Returns the updated server block on success.",
24872
25094
  inputSchema: {
24873
- enabled: z105.boolean().optional(),
24874
- default_profile: z105.string().optional(),
24875
- authentication: z105.string().optional().describe("Comma-separated, e.g. 'mschap2,mschap1'"),
24876
- certificate: z105.string().optional().describe("TLS certificate name"),
24877
- port: z105.number().int().optional(),
24878
- tls_version: z105.enum(["any", "only-1.2"]).optional(),
24879
- verify_client_certificate: z105.boolean().optional(),
24880
- pfs: z105.boolean().optional().describe("Enable Perfect Forward Secrecy"),
24881
- force_aes: z105.boolean().optional().describe("Require clients to use AES ciphers"),
24882
- max_mtu: z105.number().int().optional().describe("Maximum transmission unit"),
24883
- max_mru: z105.number().int().optional().describe("Maximum receive unit"),
24884
- mrru: z105.number().int().optional().describe("Max receive reconstructed unit for MP"),
24885
- keepalive_timeout: z105.number().int().optional().describe("Seconds before an idle connection is considered down")
25095
+ enabled: z106.boolean().optional(),
25096
+ default_profile: z106.string().optional(),
25097
+ authentication: z106.string().optional().describe("Comma-separated, e.g. 'mschap2,mschap1'"),
25098
+ certificate: z106.string().optional().describe("TLS certificate name"),
25099
+ port: z106.number().int().optional(),
25100
+ tls_version: z106.enum(["any", "only-1.2"]).optional(),
25101
+ verify_client_certificate: z106.boolean().optional(),
25102
+ pfs: z106.boolean().optional().describe("Enable Perfect Forward Secrecy"),
25103
+ force_aes: z106.boolean().optional().describe("Require clients to use AES ciphers"),
25104
+ max_mtu: z106.number().int().optional().describe("Maximum transmission unit"),
25105
+ max_mru: z106.number().int().optional().describe("Maximum receive unit"),
25106
+ mrru: z106.number().int().optional().describe("Max receive reconstructed unit for MP"),
25107
+ keepalive_timeout: z106.number().int().optional().describe("Seconds before an idle connection is considered down")
24886
25108
  },
24887
25109
  async handler(a, ctx) {
24888
25110
  ctx.info("Configuring SSTP server");
@@ -24904,27 +25126,27 @@ ${details}`;
24904
25126
  annotations: WRITE,
24905
25127
  description: "Create an outbound SSTP client tunnel interface (`/interface sstp-client add`) so this router dials out to a remote SSTP server over TLS. " + "Use when this device must act as a VPN client, not the VPN server \u2014 for server-side settings use `set_sstp_server`. " + "`connect_to` is the remote server address (IP or DNS name); the TCP port is separate. " + "You may pass the port in `port` or inline as `host:port` in `connect_to` (it is split out " + "automatically \u2014 RouterOS rejects a port embedded in connect-to). SSTP defaults to 443. " + "For L2TP outbound tunnels use `create_l2tp_client`, for OpenVPN use `create_ovpn_client`, for PPTP use `create_pptp_client`. " + "Credentials are accepted but redacted from return values. " + "Returns the created interface detail (name, status, remote address); use the interface `name` with `get_sstp_client` or `remove_sstp_client`.",
24906
25128
  inputSchema: {
24907
- name: z105.string().describe("Name for the new SSTP client interface"),
24908
- connect_to: z105.string().describe("Remote SSTP server address (IP or DNS name; host:port also accepted)"),
24909
- port: z105.number().int().optional().describe("TCP port (default 443 if omitted)"),
24910
- user: z105.string(),
24911
- password: z105.string(),
24912
- profile: z105.string().optional(),
24913
- certificate: z105.string().optional().describe("Client TLS certificate name"),
24914
- verify_server_certificate: z105.boolean().optional(),
24915
- authentication: z105.string().optional().describe("Comma-separated, e.g. 'mschap2,mschap1'"),
24916
- tls_version: z105.enum(["any", "only-1.2"]).optional(),
24917
- pfs: z105.boolean().optional().describe("Enable Perfect Forward Secrecy"),
24918
- add_default_route: z105.boolean().optional(),
24919
- default_route_distance: z105.number().int().optional().describe("Distance of the auto-added default route"),
24920
- dial_on_demand: z105.boolean().optional().describe("Connect only when traffic is sent over the tunnel"),
24921
- max_mtu: z105.number().int().optional().describe("Maximum transmission unit"),
24922
- max_mru: z105.number().int().optional().describe("Maximum receive unit"),
24923
- mrru: z105.number().int().optional().describe("Max receive reconstructed unit for MP"),
24924
- keepalive_timeout: z105.number().int().optional().describe("Seconds before an idle connection is considered down"),
24925
- http_proxy: z105.string().optional(),
24926
- comment: z105.string().optional(),
24927
- disabled: z105.boolean().default(false)
25129
+ name: z106.string().describe("Name for the new SSTP client interface"),
25130
+ connect_to: z106.string().describe("Remote SSTP server address (IP or DNS name; host:port also accepted)"),
25131
+ port: z106.number().int().optional().describe("TCP port (default 443 if omitted)"),
25132
+ user: z106.string(),
25133
+ password: z106.string(),
25134
+ profile: z106.string().optional(),
25135
+ certificate: z106.string().optional().describe("Client TLS certificate name"),
25136
+ verify_server_certificate: z106.boolean().optional(),
25137
+ authentication: z106.string().optional().describe("Comma-separated, e.g. 'mschap2,mschap1'"),
25138
+ tls_version: z106.enum(["any", "only-1.2"]).optional(),
25139
+ pfs: z106.boolean().optional().describe("Enable Perfect Forward Secrecy"),
25140
+ add_default_route: z106.boolean().optional(),
25141
+ default_route_distance: z106.number().int().optional().describe("Distance of the auto-added default route"),
25142
+ dial_on_demand: z106.boolean().optional().describe("Connect only when traffic is sent over the tunnel"),
25143
+ max_mtu: z106.number().int().optional().describe("Maximum transmission unit"),
25144
+ max_mru: z106.number().int().optional().describe("Maximum receive unit"),
25145
+ mrru: z106.number().int().optional().describe("Max receive reconstructed unit for MP"),
25146
+ keepalive_timeout: z106.number().int().optional().describe("Seconds before an idle connection is considered down"),
25147
+ http_proxy: z106.string().optional(),
25148
+ comment: z106.string().optional(),
25149
+ disabled: z106.boolean().default(false)
24928
25150
  },
24929
25151
  async handler(a, ctx) {
24930
25152
  ctx.info(`Creating SSTP client: name=${a.name}, connect_to=${a.connect_to}`);
@@ -24945,7 +25167,7 @@ ${redactSecrets(details)}` : "SSTP client creation completed but unable to verif
24945
25167
  annotations: READ,
24946
25168
  description: "List all outbound SSTP client tunnel interfaces (`/interface sstp-client print`), optionally narrowed by partial name match via `name_filter`. " + "Use to discover existing SSTP tunnels and their connection status before creating or removing one. " + "Passwords are redacted in the output. " + "For full detail on a single client use `get_sstp_client` with the interface name. " + "To inspect the inbound SSTP server config use `get_sstp_server`. " + "Returns a summary list of all matching SSTP client entries.",
24947
25169
  inputSchema: {
24948
- name_filter: z105.string().optional().describe("Partial name match")
25170
+ name_filter: z106.string().optional().describe("Partial name match")
24949
25171
  },
24950
25172
  async handler(a, ctx) {
24951
25173
  ctx.info("Listing SSTP clients");
@@ -24963,7 +25185,7 @@ ${redactSecrets(result)}`;
24963
25185
  title: "Get SSTP Client Interface Detail",
24964
25186
  annotations: READ,
24965
25187
  description: "Return full detail for one SSTP client interface (`/interface sstp-client print detail where name=...`) by interface name \u2014 includes status, remote server address, TLS certificate, PPP profile, and connection options; passwords are redacted. " + "Use when you need the complete property set for a single tunnel rather than the summary list. " + "Use `list_sstp_clients` first to discover valid interface names. " + "For the inbound server configuration use `get_sstp_server`. " + "Returns the full detail block for the named interface, or a not-found message.",
24966
- inputSchema: { name: z105.string() },
25188
+ inputSchema: { name: z106.string() },
24967
25189
  async handler(a, ctx) {
24968
25190
  ctx.info(`Getting SSTP client details: name=${a.name}`);
24969
25191
  const result = await executeMikrotikCommand(`/interface sstp-client print detail where name="${a.name}"`, ctx);
@@ -24977,7 +25199,7 @@ ${redactSecrets(result)}`;
24977
25199
  title: "Remove SSTP Client Interface",
24978
25200
  annotations: DESTRUCTIVE,
24979
25201
  description: "Permanently delete an SSTP client tunnel interface (`/interface sstp-client remove [find name=...]`) by interface name. " + "First verifies the interface exists (count-only check), then removes it; the tunnel is torn down immediately and the action is irreversible. " + "Use `list_sstp_clients` to confirm the interface name before calling this tool. " + "For L2TP, OpenVPN, or PPTP client interfaces see their respective tool scopes (`create_l2tp_client`, `create_ovpn_client`, `create_pptp_client`). " + "To deactivate the interface without deleting it use `disable_sstp_client` (re-activate with `enable_sstp_client`). " + "Returns a confirmation message on success or a not-found message if the name does not exist.",
24980
- inputSchema: { name: z105.string() },
25202
+ inputSchema: { name: z106.string() },
24981
25203
  async handler(a, ctx) {
24982
25204
  ctx.info(`Removing SSTP client: name=${a.name}`);
24983
25205
  const count = await executeMikrotikCommand(`/interface sstp-client print count-only where name="${a.name}"`, ctx);
@@ -24994,7 +25216,7 @@ ${redactSecrets(result)}`;
24994
25216
  title: "Enable SSTP Client Interface",
24995
25217
  annotations: WRITE_IDEMPOTENT,
24996
25218
  description: "Enables a disabled SSTP client interface (`/interface sstp-client enable [find name=...]`), " + "causing the router to dial out and attempt the TLS connection to the remote SSTP server. " + "Use to activate a tunnel that was created disabled or stopped with `disable_sstp_client`. " + "For L2TP/PPTP/OpenVPN tunnels use their own enable tools. " + "Identifies the interface by name \u2014 create one with `create_sstp_client`.",
24997
- inputSchema: { name: z105.string() },
25219
+ inputSchema: { name: z106.string() },
24998
25220
  async handler(a, ctx) {
24999
25221
  ctx.info(`Enabling SSTP client: name=${a.name}`);
25000
25222
  const count = await executeMikrotikCommand(`/interface sstp-client print count-only where name="${a.name}"`, ctx);
@@ -25011,7 +25233,7 @@ ${redactSecrets(result)}`;
25011
25233
  title: "Disable SSTP Client Interface",
25012
25234
  annotations: WRITE_IDEMPOTENT,
25013
25235
  description: "Disables an active SSTP client interface (`/interface sstp-client disable [find name=...]`), " + "tearing down the tunnel without removing its configuration. " + "Use to temporarily stop a tunnel while preserving its settings for later reuse. " + "To re-enable use `enable_sstp_client`; to permanently remove use `remove_sstp_client`.",
25014
- inputSchema: { name: z105.string() },
25236
+ inputSchema: { name: z106.string() },
25015
25237
  async handler(a, ctx) {
25016
25238
  ctx.info(`Disabling SSTP client: name=${a.name}`);
25017
25239
  const count = await executeMikrotikCommand(`/interface sstp-client print count-only where name="${a.name}"`, ctx);
@@ -25026,7 +25248,7 @@ ${redactSecrets(result)}`;
25026
25248
  ];
25027
25249
 
25028
25250
  // src/tools/switch-settings.ts
25029
- import { z as z106 } from "zod";
25251
+ import { z as z107 } from "zod";
25030
25252
  var switchSettingsTools = [
25031
25253
  defineTool({
25032
25254
  name: "list_switches",
@@ -25034,8 +25256,8 @@ var switchSettingsTools = [
25034
25256
  annotations: READ,
25035
25257
  description: "Lists hardware switch chips (`/interface ethernet switch`). " + "Use to discover switch chip names and types present on the device before targeting a chip with get_switch or update_switch. " + "Accepts optional `name_filter` and `type_filter` for partial-match filtering. " + "Returns chip name, type, and mirror/flow-control configuration for each matching entry; returns an empty message if none match.",
25036
25258
  inputSchema: {
25037
- name_filter: z106.string().optional().describe("Partial switch-name match"),
25038
- type_filter: z106.string().optional().describe("Partial switch-type match")
25259
+ name_filter: z107.string().optional().describe("Partial switch-name match"),
25260
+ type_filter: z107.string().optional().describe("Partial switch-type match")
25039
25261
  },
25040
25262
  async handler(a, ctx) {
25041
25263
  ctx.info("Listing switches");
@@ -25056,7 +25278,7 @@ ${result}`;
25056
25278
  annotations: READ,
25057
25279
  description: "Fetches full detail for a single hardware switch chip (`/interface ethernet switch print detail`). " + "Use to inspect the current cpu-flow-control flag and mirror-source, mirror-target, and mirror-egress settings before modifying them with update_switch. " + "`switch_id` accepts the chip name (e.g. 'switch1') or the RouterOS `.id` returned by list_switches \u2014 tries `.id` lookup first, then falls back to name lookup. " + "Returns detailed chip settings or a not-found message.",
25058
25280
  inputSchema: {
25059
- switch_id: z106.string().describe("Switch name (e.g. 'switch1') or RouterOS '.id'")
25281
+ switch_id: z107.string().describe("Switch name (e.g. 'switch1') or RouterOS '.id'")
25060
25282
  },
25061
25283
  async handler(a, ctx) {
25062
25284
  ctx.info(`Getting switch details: switch_id=${a.switch_id}`);
@@ -25080,14 +25302,14 @@ ${result}`;
25080
25302
 
25081
25303
  ` + "Returns updated switch details on success.",
25082
25304
  inputSchema: {
25083
- switch_id: z106.string().describe("Switch name (e.g. 'switch1') or RouterOS '.id'"),
25084
- name: z106.string().optional().describe("Rename the switch"),
25085
- cpu_flow_control: z106.boolean().optional(),
25086
- mirror_source: z106.string().optional().describe("Source port to mirror, or 'none'"),
25087
- mirror_target: z106.string().optional().describe("Monitor port, 'cpu', or 'none'"),
25088
- mirror_egress: z106.string().optional().describe("Egress mirror source port (newer chips), or 'none'"),
25089
- mirror_egress_target: z106.string().optional().describe("Egress mirror target port (88E6393X/88E6191X/88E6190 chips), or 'none'"),
25090
- switch_all_ports: z106.boolean().optional().describe("Switch all ports together (RB450G/RB435G/RB850Gx2 only)")
25305
+ switch_id: z107.string().describe("Switch name (e.g. 'switch1') or RouterOS '.id'"),
25306
+ name: z107.string().optional().describe("Rename the switch"),
25307
+ cpu_flow_control: z107.boolean().optional(),
25308
+ mirror_source: z107.string().optional().describe("Source port to mirror, or 'none'"),
25309
+ mirror_target: z107.string().optional().describe("Monitor port, 'cpu', or 'none'"),
25310
+ mirror_egress: z107.string().optional().describe("Egress mirror source port (newer chips), or 'none'"),
25311
+ mirror_egress_target: z107.string().optional().describe("Egress mirror target port (88E6393X/88E6191X/88E6190 chips), or 'none'"),
25312
+ switch_all_ports: z107.boolean().optional().describe("Switch all ports together (RB450G/RB435G/RB850Gx2 only)")
25091
25313
  },
25092
25314
  async handler(a, ctx) {
25093
25315
  ctx.info(`Updating switch: switch_id=${a.switch_id}`);
@@ -25110,9 +25332,9 @@ ${details}`;
25110
25332
  ];
25111
25333
 
25112
25334
  // src/tools/switch-port.ts
25113
- import { z as z107 } from "zod";
25114
- var VlanMode = z107.enum(["disabled", "optional", "enabled", "secure"]);
25115
- var VlanHeader = z107.enum(["leave-as-is", "always-strip", "add-if-missing"]);
25335
+ import { z as z108 } from "zod";
25336
+ var VlanMode = z108.enum(["disabled", "optional", "enabled", "secure"]);
25337
+ var VlanHeader = z108.enum(["leave-as-is", "always-strip", "add-if-missing"]);
25116
25338
  var switchPortTools = [
25117
25339
  defineTool({
25118
25340
  name: "list_switch_ports",
@@ -25120,8 +25342,8 @@ var switchPortTools = [
25120
25342
  annotations: READ,
25121
25343
  description: "List all switch chip ports (`/interface ethernet switch port print`) \u2014 the hardware-level " + "per-port VLAN configuration entries on RouterOS switch chips. " + "Use this to discover port names and their current vlan-mode, vlan-header, and " + "default-vlan-id (PVID) settings before updating them. " + "For a single port's full detail use get_switch_port; to change settings use update_switch_port. " + "Optional filters narrow results by partial port name or owning switch (e.g. 'switch1'). " + "Returns all matching port rows including VLAN mode, tag-header treatment, and PVID.",
25122
25344
  inputSchema: {
25123
- name_filter: z107.string().optional().describe("Partial port-name match"),
25124
- switch_filter: z107.string().optional().describe("Filter by owning switch, e.g. 'switch1'")
25345
+ name_filter: z108.string().optional().describe("Partial port-name match"),
25346
+ switch_filter: z108.string().optional().describe("Filter by owning switch, e.g. 'switch1'")
25125
25347
  },
25126
25348
  async handler(a, ctx) {
25127
25349
  ctx.info("Listing switch ports");
@@ -25142,7 +25364,7 @@ ${result}`;
25142
25364
  annotations: READ,
25143
25365
  description: "Retrieve detailed settings for a single switch chip port (`/interface ethernet switch port print detail`) " + "by port name (e.g. 'ether1') or RouterOS '.id' from list_switch_ports. " + "Use this when you need the full attribute set of one port before updating it; " + "for all ports use list_switch_ports; to change settings use update_switch_port. " + "Returns a detailed view of vlan-mode, vlan-header, default-vlan-id, and force-vlan-id for the matched port.",
25144
25366
  inputSchema: {
25145
- port_id: z107.string().describe("Port name (e.g. 'ether1') or RouterOS '.id'")
25367
+ port_id: z108.string().describe("Port name (e.g. 'ether1') or RouterOS '.id'")
25146
25368
  },
25147
25369
  async handler(a, ctx) {
25148
25370
  ctx.info(`Getting switch port details: port_id=${a.port_id}`);
@@ -25168,11 +25390,11 @@ ${result}`;
25168
25390
  ` + ` 'always-strip', or 'add-if-missing'.
25169
25391
  ` + " default_vlan_id: PVID for untagged ingress ('auto', 'none', or a number).",
25170
25392
  inputSchema: {
25171
- port_id: z107.string().describe("Port name (e.g. 'ether1') or RouterOS '.id'"),
25172
- default_vlan_id: z107.string().optional().describe("PVID: 'auto', 'none', or a VLAN id number"),
25393
+ port_id: z108.string().describe("Port name (e.g. 'ether1') or RouterOS '.id'"),
25394
+ default_vlan_id: z108.string().optional().describe("PVID: 'auto', 'none', or a VLAN id number"),
25173
25395
  vlan_mode: VlanMode.optional(),
25174
25396
  vlan_header: VlanHeader.optional(),
25175
- force_vlan_id: z107.boolean().optional()
25397
+ force_vlan_id: z108.boolean().optional()
25176
25398
  },
25177
25399
  async handler(a, ctx) {
25178
25400
  ctx.info(`Updating switch port: port_id=${a.port_id}`);
@@ -25194,7 +25416,7 @@ ${details}`;
25194
25416
  ];
25195
25417
 
25196
25418
  // src/tools/switch-port-isolation.ts
25197
- import { z as z108 } from "zod";
25419
+ import { z as z109 } from "zod";
25198
25420
  function selectorFor(id) {
25199
25421
  return id.startsWith("*") ? `.id="${id}"` : `port="${id}"`;
25200
25422
  }
@@ -25211,9 +25433,9 @@ var switchPortIsolationTools = [
25211
25433
  ` + ` port: source port to isolate, e.g. 'ether1'.
25212
25434
  ` + " forwarding_override_ports: comma-separated list of the ONLY ports this port " + " may forward to \u2014 all others are blocked in hardware.",
25213
25435
  inputSchema: {
25214
- port: z108.string().describe("Source port to isolate, e.g. 'ether1'"),
25215
- forwarding_override_ports: z108.string().describe("Comma-separated allowed destination ports"),
25216
- comment: z108.string().optional()
25436
+ port: z109.string().describe("Source port to isolate, e.g. 'ether1'"),
25437
+ forwarding_override_ports: z109.string().describe("Comma-separated allowed destination ports"),
25438
+ comment: z109.string().optional()
25217
25439
  },
25218
25440
  async handler(a, ctx) {
25219
25441
  ctx.info(`Adding switch port-isolation: port=${a.port}`);
@@ -25235,7 +25457,7 @@ ${details}` : "Switch port-isolation addition completed but unable to verify.";
25235
25457
 
25236
25458
  ` + "Returns a table of all matching entries; optionally filter by partial port name via port_filter.",
25237
25459
  inputSchema: {
25238
- port_filter: z108.string().optional().describe("Partial source-port match")
25460
+ port_filter: z109.string().optional().describe("Partial source-port match")
25239
25461
  },
25240
25462
  async handler(a, ctx) {
25241
25463
  ctx.info("Listing switch port-isolation entries");
@@ -25256,7 +25478,7 @@ ${result}`;
25256
25478
 
25257
25479
  ` + "Returns the full detail block for the matched entry, or a not-found message.",
25258
25480
  inputSchema: {
25259
- isolation_id: z108.string().describe("Source port name (e.g. 'ether1') or RouterOS '.id'")
25481
+ isolation_id: z109.string().describe("Source port name (e.g. 'ether1') or RouterOS '.id'")
25260
25482
  },
25261
25483
  async handler(a, ctx) {
25262
25484
  ctx.info(`Getting switch port-isolation: isolation_id=${a.isolation_id}`);
@@ -25276,9 +25498,9 @@ ${result}`;
25276
25498
 
25277
25499
  ` + "Returns the entry's updated detail block.",
25278
25500
  inputSchema: {
25279
- isolation_id: z108.string().describe("Source port name or RouterOS '.id'"),
25280
- forwarding_override_ports: z108.string().optional().describe("Comma-separated allowed destination ports"),
25281
- comment: z108.string().optional()
25501
+ isolation_id: z109.string().describe("Source port name or RouterOS '.id'"),
25502
+ forwarding_override_ports: z109.string().optional().describe("Comma-separated allowed destination ports"),
25503
+ comment: z109.string().optional()
25282
25504
  },
25283
25505
  async handler(a, ctx) {
25284
25506
  ctx.info(`Updating switch port-isolation: isolation_id=${a.isolation_id}`);
@@ -25307,7 +25529,7 @@ ${details}`;
25307
25529
 
25308
25530
  ` + "isolation_id accepts either the source port name (e.g. 'ether1') or the RouterOS `.id` " + "(e.g. '*1') from list_switch_port_isolation. Performs a count-only existence check before " + "removal and returns a not-found message if the entry does not exist. To add a new isolation rule " + "afterwards use add_switch_port_isolation; to only modify allowed ports use update_switch_port_isolation.",
25309
25531
  inputSchema: {
25310
- isolation_id: z108.string().describe("Source port name or RouterOS '.id'")
25532
+ isolation_id: z109.string().describe("Source port name or RouterOS '.id'")
25311
25533
  },
25312
25534
  async handler(a, ctx) {
25313
25535
  ctx.info(`Removing switch port-isolation: isolation_id=${a.isolation_id}`);
@@ -25324,7 +25546,7 @@ ${details}`;
25324
25546
  ];
25325
25547
 
25326
25548
  // src/tools/switch-rule.ts
25327
- import { z as z109 } from "zod";
25549
+ import { z as z110 } from "zod";
25328
25550
  var isDigits8 = (s) => /^\d+$/.test(s);
25329
25551
  async function updateSwitchRule(a, ctx) {
25330
25552
  ctx.info(`Updating switch rule: rule_id=${a.rule_id}`);
@@ -25391,32 +25613,32 @@ var switchRuleTools = [
25391
25613
  ` + ` rate: rate limit in bits/second.
25392
25614
  ` + " mac_protocol: e.g. 'ip', 'arp', 'vlan', or an EtherType number.",
25393
25615
  inputSchema: {
25394
- switch: z109.string().describe("Owning switch chip, e.g. 'switch1'"),
25395
- ports: z109.string().describe("Comma-separated source ports the rule matches"),
25396
- src_address: z109.string().optional().describe("Source IP/mask"),
25397
- dst_address: z109.string().optional().describe("Destination IP/mask"),
25398
- src_address6: z109.string().optional().describe("Source IPv6 address/mask"),
25399
- dst_address6: z109.string().optional().describe("Destination IPv6 address/mask"),
25400
- src_mac_address: z109.string().optional().describe("Source MAC/mask"),
25401
- dst_mac_address: z109.string().optional().describe("Destination MAC/mask"),
25402
- src_port: z109.string().optional().describe("Layer-4 source port(s)"),
25403
- dst_port: z109.string().optional().describe("Layer-4 destination port(s)"),
25404
- protocol: z109.string().optional().describe("IP protocol, e.g. 'tcp'"),
25405
- mac_protocol: z109.string().optional().describe("MAC protocol, e.g. 'ip', 'arp', 'vlan' or a number"),
25406
- vlan_header: z109.enum(["any", "not-present", "present"]).optional().describe("Match on VLAN tag presence"),
25407
- vlan_id: z109.string().optional(),
25408
- vlan_priority: z109.string().optional(),
25409
- dscp: z109.string().optional(),
25410
- flow_label: z109.string().optional().describe("IPv6 flow label"),
25411
- new_dst_ports: z109.string().optional().describe("Redirect target ports; empty string drops the traffic"),
25412
- new_vlan_id: z109.string().optional(),
25413
- new_vlan_priority: z109.string().optional(),
25414
- redirect_to_cpu: z109.boolean().optional(),
25415
- copy_to_cpu: z109.boolean().optional(),
25416
- mirror: z109.boolean().optional(),
25417
- rate: z109.string().optional().describe("Rate limit in bits/second"),
25418
- comment: z109.string().optional(),
25419
- disabled: z109.boolean().default(false)
25616
+ switch: z110.string().describe("Owning switch chip, e.g. 'switch1'"),
25617
+ ports: z110.string().describe("Comma-separated source ports the rule matches"),
25618
+ src_address: z110.string().optional().describe("Source IP/mask"),
25619
+ dst_address: z110.string().optional().describe("Destination IP/mask"),
25620
+ src_address6: z110.string().optional().describe("Source IPv6 address/mask"),
25621
+ dst_address6: z110.string().optional().describe("Destination IPv6 address/mask"),
25622
+ src_mac_address: z110.string().optional().describe("Source MAC/mask"),
25623
+ dst_mac_address: z110.string().optional().describe("Destination MAC/mask"),
25624
+ src_port: z110.string().optional().describe("Layer-4 source port(s)"),
25625
+ dst_port: z110.string().optional().describe("Layer-4 destination port(s)"),
25626
+ protocol: z110.string().optional().describe("IP protocol, e.g. 'tcp'"),
25627
+ mac_protocol: z110.string().optional().describe("MAC protocol, e.g. 'ip', 'arp', 'vlan' or a number"),
25628
+ vlan_header: z110.enum(["any", "not-present", "present"]).optional().describe("Match on VLAN tag presence"),
25629
+ vlan_id: z110.string().optional(),
25630
+ vlan_priority: z110.string().optional(),
25631
+ dscp: z110.string().optional(),
25632
+ flow_label: z110.string().optional().describe("IPv6 flow label"),
25633
+ new_dst_ports: z110.string().optional().describe("Redirect target ports; empty string drops the traffic"),
25634
+ new_vlan_id: z110.string().optional(),
25635
+ new_vlan_priority: z110.string().optional(),
25636
+ redirect_to_cpu: z110.boolean().optional(),
25637
+ copy_to_cpu: z110.boolean().optional(),
25638
+ mirror: z110.boolean().optional(),
25639
+ rate: z110.string().optional().describe("Rate limit in bits/second"),
25640
+ comment: z110.string().optional(),
25641
+ disabled: z110.boolean().default(false)
25420
25642
  },
25421
25643
  async handler(a, ctx) {
25422
25644
  ctx.info(`Adding switch rule: switch=${a.switch}, ports=${a.ports}`);
@@ -25450,9 +25672,9 @@ ${details}`;
25450
25672
  annotations: READ,
25451
25673
  description: "Lists all hardware switch ACL/redirect rules (`/interface ethernet switch rule print`) " + "on the switch chip. Use this to audit or discover existing rules before adding or updating. " + "Optional filters narrow by switch chip name, port name substring, or disabled-only status. " + "For software firewall rules use list_filter_rules; for NAT rules use list_nat_rules. " + "Returns a formatted table of all matching rules including their `.id` values needed by " + "get_switch_rule, update_switch_rule, remove_switch_rule, enable_switch_rule, and disable_switch_rule.",
25452
25674
  inputSchema: {
25453
- switch_filter: z109.string().optional(),
25454
- ports_filter: z109.string().optional(),
25455
- disabled_only: z109.boolean().default(false)
25675
+ switch_filter: z110.string().optional(),
25676
+ ports_filter: z110.string().optional(),
25677
+ disabled_only: z110.boolean().default(false)
25456
25678
  },
25457
25679
  async handler(a, ctx) {
25458
25680
  ctx.info("Listing switch rules");
@@ -25475,7 +25697,7 @@ ${result}`;
25475
25697
  annotations: READ,
25476
25698
  description: "Fetches full detail of a single hardware switch ACL/redirect rule " + "(`/interface ethernet switch rule print detail where .id=\u2026`). " + "Use this to inspect all match criteria and action fields of one rule. " + "`rule_id` takes the `.id` from list_switch_rules (e.g. '*1'). " + "For a tabular overview of all rules use list_switch_rules; " + "for software firewall rule detail use get_filter_rule.",
25477
25699
  inputSchema: {
25478
- rule_id: z109.string().describe("RouterOS '.id', e.g. '*1' or '0'")
25700
+ rule_id: z110.string().describe("RouterOS '.id', e.g. '*1' or '0'")
25479
25701
  },
25480
25702
  async handler(a, ctx) {
25481
25703
  ctx.info(`Getting switch rule: rule_id=${a.rule_id}`);
@@ -25491,33 +25713,33 @@ ${result}`;
25491
25713
  annotations: WRITE_IDEMPOTENT,
25492
25714
  description: "Modifies an existing hardware switch ACL/redirect rule " + "(`/interface ethernet switch rule set`) by `.id`. " + "Use this to change match criteria (ports, addresses, VLAN, protocol) or actions " + "(redirect target ports, mirror, rate limit, disabled state). " + 'Pass an empty string ("") for any optional field to clear it. ' + "`rule_id` takes the `.id` from list_switch_rules. Returns the updated rule's full detail. " + "For software firewall rule edits use update_filter_rule; " + "to only toggle the enabled state use enable_switch_rule or disable_switch_rule.",
25493
25715
  inputSchema: {
25494
- rule_id: z109.string(),
25495
- switch: z109.string().optional(),
25496
- ports: z109.string().optional(),
25497
- src_address: z109.string().optional(),
25498
- dst_address: z109.string().optional(),
25499
- src_address6: z109.string().optional(),
25500
- dst_address6: z109.string().optional(),
25501
- src_mac_address: z109.string().optional(),
25502
- dst_mac_address: z109.string().optional(),
25503
- src_port: z109.string().optional(),
25504
- dst_port: z109.string().optional(),
25505
- protocol: z109.string().optional(),
25506
- mac_protocol: z109.string().optional(),
25507
- vlan_header: z109.enum(["any", "not-present", "present"]).optional(),
25508
- vlan_id: z109.string().optional(),
25509
- vlan_priority: z109.string().optional(),
25510
- dscp: z109.string().optional(),
25511
- flow_label: z109.string().optional(),
25512
- new_dst_ports: z109.string().optional(),
25513
- new_vlan_id: z109.string().optional(),
25514
- new_vlan_priority: z109.string().optional(),
25515
- redirect_to_cpu: z109.boolean().optional(),
25516
- copy_to_cpu: z109.boolean().optional(),
25517
- mirror: z109.boolean().optional(),
25518
- rate: z109.string().optional(),
25519
- comment: z109.string().optional(),
25520
- disabled: z109.boolean().optional()
25716
+ rule_id: z110.string(),
25717
+ switch: z110.string().optional(),
25718
+ ports: z110.string().optional(),
25719
+ src_address: z110.string().optional(),
25720
+ dst_address: z110.string().optional(),
25721
+ src_address6: z110.string().optional(),
25722
+ dst_address6: z110.string().optional(),
25723
+ src_mac_address: z110.string().optional(),
25724
+ dst_mac_address: z110.string().optional(),
25725
+ src_port: z110.string().optional(),
25726
+ dst_port: z110.string().optional(),
25727
+ protocol: z110.string().optional(),
25728
+ mac_protocol: z110.string().optional(),
25729
+ vlan_header: z110.enum(["any", "not-present", "present"]).optional(),
25730
+ vlan_id: z110.string().optional(),
25731
+ vlan_priority: z110.string().optional(),
25732
+ dscp: z110.string().optional(),
25733
+ flow_label: z110.string().optional(),
25734
+ new_dst_ports: z110.string().optional(),
25735
+ new_vlan_id: z110.string().optional(),
25736
+ new_vlan_priority: z110.string().optional(),
25737
+ redirect_to_cpu: z110.boolean().optional(),
25738
+ copy_to_cpu: z110.boolean().optional(),
25739
+ mirror: z110.boolean().optional(),
25740
+ rate: z110.string().optional(),
25741
+ comment: z110.string().optional(),
25742
+ disabled: z110.boolean().optional()
25521
25743
  },
25522
25744
  async handler(a, ctx) {
25523
25745
  return updateSwitchRule(a, ctx);
@@ -25528,7 +25750,7 @@ ${result}`;
25528
25750
  title: "Remove Switch Chip ACL Rule",
25529
25751
  annotations: DESTRUCTIVE,
25530
25752
  description: "Permanently deletes a hardware switch ACL/redirect rule " + "(`/interface ethernet switch rule remove`) by `.id`. " + "Performs an existence check first and returns an error if the rule is not found. " + "`rule_id` takes the `.id` from list_switch_rules (e.g. '*1'). " + "To keep the rule but stop it from matching use disable_switch_rule instead. " + "For removing software firewall rules use remove_filter_rule.",
25531
- inputSchema: { rule_id: z109.string() },
25753
+ inputSchema: { rule_id: z110.string() },
25532
25754
  async handler(a, ctx) {
25533
25755
  ctx.info(`Removing switch rule: rule_id=${a.rule_id}`);
25534
25756
  const count = await executeMikrotikCommand(`/interface ethernet switch rule print count-only where .id=${a.rule_id}`, ctx);
@@ -25545,7 +25767,7 @@ ${result}`;
25545
25767
  title: "Enable Switch Chip ACL Rule",
25546
25768
  annotations: WRITE_IDEMPOTENT,
25547
25769
  description: "Re-enables a previously disabled hardware switch ACL/redirect rule " + "(`/interface ethernet switch rule set \u2026 disabled=no`). " + "Use this to activate a rule without recreating it. " + "`rule_id` takes the `.id` from list_switch_rules (e.g. '*1'). " + "To deactivate a rule without deleting it use disable_switch_rule; " + "to permanently delete use remove_switch_rule. Returns the updated rule's full detail.",
25548
- inputSchema: { rule_id: z109.string() },
25770
+ inputSchema: { rule_id: z110.string() },
25549
25771
  async handler(a, ctx) {
25550
25772
  return updateSwitchRule({ rule_id: a.rule_id, disabled: false }, ctx);
25551
25773
  }
@@ -25555,7 +25777,7 @@ ${result}`;
25555
25777
  title: "Disable Switch Chip ACL Rule",
25556
25778
  annotations: WRITE_IDEMPOTENT,
25557
25779
  description: "Deactivates a hardware switch ACL/redirect rule without deleting it " + "(`/interface ethernet switch rule set \u2026 disabled=yes`). " + "Use this to temporarily suspend a rule's match/action while preserving its configuration. " + "`rule_id` takes the `.id` from list_switch_rules (e.g. '*1'). " + "To reactivate the rule use enable_switch_rule; to permanently delete use remove_switch_rule. " + "Returns the updated rule's full detail.",
25558
- inputSchema: { rule_id: z109.string() },
25780
+ inputSchema: { rule_id: z110.string() },
25559
25781
  async handler(a, ctx) {
25560
25782
  return updateSwitchRule({ rule_id: a.rule_id, disabled: true }, ctx);
25561
25783
  }
@@ -25563,7 +25785,7 @@ ${result}`;
25563
25785
  ];
25564
25786
 
25565
25787
  // src/tools/system-config.ts
25566
- import { z as z110 } from "zod";
25788
+ import { z as z111 } from "zod";
25567
25789
  var systemConfigTools = [
25568
25790
  defineTool({
25569
25791
  name: "list_system_console",
@@ -25610,7 +25832,7 @@ ${result}`;
25610
25832
  annotations: WRITE_IDEMPOTENT,
25611
25833
  description: "Writes the global LED behaviour settings (`/system leds settings set`). " + "Use to enable dark mode by scheduling all LEDs off. " + "For per-LED trigger assignments use `list_leds`; to read current settings use `get_leds_settings`. " + "Accepts `all_leds_off`: `never` | `immediate` | `after-1h` | `after-1min`. " + "Returns the updated settings on success.",
25612
25834
  inputSchema: {
25613
- all_leds_off: z110.enum(["never", "immediate", "after-1h", "after-1min"]).optional().describe("When to turn all LEDs off (dark mode)")
25835
+ all_leds_off: z111.enum(["never", "immediate", "after-1h", "after-1min"]).optional().describe("When to turn all LEDs off (dark mode)")
25614
25836
  },
25615
25837
  async handler(a, ctx) {
25616
25838
  ctx.info("Setting LED settings");
@@ -25660,8 +25882,8 @@ ${result}`;
25660
25882
  annotations: WRITE_IDEMPOTENT,
25661
25883
  description: "Writes the system-wide login banner text (`/system note set`). " + "Use to set or clear the message displayed to users at login. " + "To read the current note use `get_note`. " + "Accepts optional `note` (text string) and `show_at_login` (boolean). " + "Returns the updated note on success.",
25662
25884
  inputSchema: {
25663
- note: z110.string().optional().describe("The note text to display"),
25664
- show_at_login: z110.boolean().optional().describe("Show the note on login")
25885
+ note: z111.string().optional().describe("The note text to display"),
25886
+ show_at_login: z111.boolean().optional().describe("Show the note on login")
25665
25887
  },
25666
25888
  async handler(a, ctx) {
25667
25889
  ctx.info("Setting system note");
@@ -25698,13 +25920,13 @@ ${result}`;
25698
25920
  annotations: WRITE_IDEMPOTENT,
25699
25921
  description: "Writes the device's built-in NTP *server* settings (`/system ntp server set`, RouterOS 7+). " + "Use to enable the router as a time server for LAN clients via broadcast, multicast, or manycast. " + "This tool configures the local NTP *server* role; to set upstream NTP *client* sources " + "use the NTP client tools in the system module. " + "Accepts `enabled`, `broadcast`, `multicast`, `manycast` (booleans) and `broadcast_address` (string). " + "Returns the updated server configuration on success.",
25700
25922
  inputSchema: {
25701
- enabled: z110.boolean().optional().describe("Enable or disable the NTP server"),
25702
- broadcast: z110.boolean().optional(),
25703
- multicast: z110.boolean().optional(),
25704
- manycast: z110.boolean().optional(),
25705
- broadcast_address: z110.string().optional().describe("Broadcast address for NTP broadcasts"),
25706
- use_local_clock: z110.boolean().optional().describe("Serve time from the device's local clock as reference"),
25707
- local_clock_stratum: z110.number().int().optional().describe("Stratum advertised when using the local clock (1-15)")
25923
+ enabled: z111.boolean().optional().describe("Enable or disable the NTP server"),
25924
+ broadcast: z111.boolean().optional(),
25925
+ multicast: z111.boolean().optional(),
25926
+ manycast: z111.boolean().optional(),
25927
+ broadcast_address: z111.string().optional().describe("Broadcast address for NTP broadcasts"),
25928
+ use_local_clock: z111.boolean().optional().describe("Serve time from the device's local clock as reference"),
25929
+ local_clock_stratum: z111.number().int().optional().describe("Stratum advertised when using the local clock (1-15)")
25708
25930
  },
25709
25931
  async handler(a, ctx) {
25710
25932
  ctx.info("Setting NTP server configuration");
@@ -25727,8 +25949,8 @@ ${details}`;
25727
25949
  annotations: WRITE,
25728
25950
  description: "Changes the password of the currently authenticated user (`/password`). " + "Use to rotate the login credential without touching other user accounts; " + "passwords are never echoed in the response. " + "To manage other users' accounts or create new users use `add_user`. " + "Requires `old_password` and `new_password`; returns success or a rejection message (no credentials logged).",
25729
25951
  inputSchema: {
25730
- old_password: z110.string().describe("The current password"),
25731
- new_password: z110.string().describe("The new password to set")
25952
+ old_password: z111.string().describe("The current password"),
25953
+ new_password: z111.string().describe("The new password to set")
25732
25954
  },
25733
25955
  async handler(a, ctx) {
25734
25956
  ctx.info("Changing device password");
@@ -25745,7 +25967,7 @@ ${details}`;
25745
25967
  annotations: READ,
25746
25968
  description: "Lists the physical serial ports registered on the device (`/port print`). " + "Use to discover available serial ports and their current line settings before reconfiguring. " + "For auto-login rules tied to a serial port use `list_special_login`; " + "for console session entries use `list_system_console`. " + "Accepts optional `name_filter` for partial name match. " + "Returns port entries or an empty message when none match.",
25747
25969
  inputSchema: {
25748
- name_filter: z110.string().optional().describe("Partial port name match")
25970
+ name_filter: z111.string().optional().describe("Partial port name match")
25749
25971
  },
25750
25972
  async handler(a, ctx) {
25751
25973
  ctx.info("Listing serial ports");
@@ -25764,7 +25986,7 @@ ${result}`;
25764
25986
  annotations: READ,
25765
25987
  description: "Reads detailed settings for a named serial port (`/port print detail where name=...`). " + "Use to inspect baud rate, parity, data/stop bits, and flow control for a specific port. " + "For an overview of all ports use `list_ports`; to change settings use `set_port`. " + "Requires `name` (e.g. `serial0`). Returns full detail for the named port.",
25766
25988
  inputSchema: {
25767
- name: z110.string().describe("Serial port name, e.g. 'serial0'")
25989
+ name: z111.string().describe("Serial port name, e.g. 'serial0'")
25768
25990
  },
25769
25991
  async handler(a, ctx) {
25770
25992
  ctx.info(`Getting serial port details: name=${a.name}`);
@@ -25780,12 +26002,12 @@ ${result}`;
25780
26002
  annotations: WRITE_IDEMPOTENT,
25781
26003
  description: "Writes line settings for a named serial port (`/port set [find name=...]`). " + "Use to change baud rate, data bits, parity, stop bits, or flow control on a serial port. " + "To read current settings first use `get_port`; for a list of all ports use `list_ports`. " + "Requires `name` (e.g. `serial0`), plus optional `baud_rate` (e.g. `115200` or `auto`), " + "`data_bits`, `parity` (`none`|`odd`|`even`), `stop_bits`, " + "`flow_control` (`none`|`hardware`|`xon-xoff`). " + "Returns the updated port detail on success.",
25782
26004
  inputSchema: {
25783
- name: z110.string().describe("Serial port name to update"),
25784
- baud_rate: z110.string().optional().describe("e.g. '115200' or 'auto'"),
25785
- data_bits: z110.number().int().optional(),
25786
- parity: z110.enum(["none", "odd", "even"]).optional(),
25787
- stop_bits: z110.number().int().optional(),
25788
- flow_control: z110.enum(["none", "hardware", "xon-xoff"]).optional()
26005
+ name: z111.string().describe("Serial port name to update"),
26006
+ baud_rate: z111.string().optional().describe("e.g. '115200' or 'auto'"),
26007
+ data_bits: z111.number().int().optional(),
26008
+ parity: z111.enum(["none", "odd", "even"]).optional(),
26009
+ stop_bits: z111.number().int().optional(),
26010
+ flow_control: z111.enum(["none", "hardware", "xon-xoff"]).optional()
25789
26011
  },
25790
26012
  async handler(a, ctx) {
25791
26013
  ctx.info(`Setting serial port: name=${a.name}`);
@@ -25824,12 +26046,12 @@ ${result}`;
25824
26046
  annotations: DANGEROUS,
25825
26047
  description: "Sends a factory-reset command to the device (`/system reset-configuration`). " + "Use ONLY to wipe the entire configuration and reboot into defaults \u2014 " + "the SSH connection will drop immediately after and all config will be lost. " + "Requires `confirm=true`; without it the command is blocked. " + "Optional: `keep_users` (preserve user accounts), `no_defaults` (skip loading default config), " + "`skip_backup` (skip automatic pre-reset backup), `caps_mode` (reset into CAPsMAN-managed CAP mode), " + "`run_after_reset` (script to execute post-reboot). " + "This operation is irreversible \u2014 there is no undo.",
25826
26048
  inputSchema: {
25827
- confirm: z110.boolean().describe("Must be true to actually ERASE the configuration"),
25828
- keep_users: z110.boolean().optional().describe("Keep existing user accounts after reset"),
25829
- no_defaults: z110.boolean().optional().describe("Do not load the default configuration"),
25830
- skip_backup: z110.boolean().optional().describe("Skip the automatic backup before reset"),
25831
- caps_mode: z110.boolean().optional().describe("Reset into CAPsMAN-managed CAP mode instead of standalone"),
25832
- run_after_reset: z110.string().optional().describe("Script file to run after reset")
26049
+ confirm: z111.boolean().describe("Must be true to actually ERASE the configuration"),
26050
+ keep_users: z111.boolean().optional().describe("Keep existing user accounts after reset"),
26051
+ no_defaults: z111.boolean().optional().describe("Do not load the default configuration"),
26052
+ skip_backup: z111.boolean().optional().describe("Skip the automatic backup before reset"),
26053
+ caps_mode: z111.boolean().optional().describe("Reset into CAPsMAN-managed CAP mode instead of standalone"),
26054
+ run_after_reset: z111.string().optional().describe("Script file to run after reset")
25833
26055
  },
25834
26056
  async handler(a, ctx) {
25835
26057
  if (!a.confirm)
@@ -25874,12 +26096,12 @@ ${result}`;
25874
26096
  annotations: WRITE_IDEMPOTENT,
25875
26097
  description: "Writes the hardware/software watchdog timer settings (`/system watchdog set`). " + "Use to enable automatic reboots when the device becomes unresponsive " + "(triggered when pings to `watch_address` fail). " + "To read current settings use `get_watchdog`. " + "Accepts `watchdog_timer` (enable HW watchdog), `watch_address` (IP to ping), " + "`ping_timeout` (e.g. `1m`), `no_ping_delay` (e.g. `5m`), " + "`automatic_supout` (generate diagnostic file on crash), " + "`auto_send_supout` (email the diagnostic). " + "Returns the updated watchdog configuration on success.",
25876
26098
  inputSchema: {
25877
- watchdog_timer: z110.boolean().optional().describe("Enable the hardware watchdog timer"),
25878
- watch_address: z110.string().optional().describe("Address to ping; reboot if unreachable"),
25879
- ping_timeout: z110.string().optional().describe("e.g. '1m'"),
25880
- no_ping_delay: z110.string().optional().describe("e.g. '5m'"),
25881
- automatic_supout: z110.boolean().optional().describe("Generate a supout.rif on software failure"),
25882
- auto_send_supout: z110.boolean().optional().describe("Email the generated supout.rif")
26099
+ watchdog_timer: z111.boolean().optional().describe("Enable the hardware watchdog timer"),
26100
+ watch_address: z111.string().optional().describe("Address to ping; reboot if unreachable"),
26101
+ ping_timeout: z111.string().optional().describe("e.g. '1m'"),
26102
+ no_ping_delay: z111.string().optional().describe("e.g. '5m'"),
26103
+ automatic_supout: z111.boolean().optional().describe("Generate a supout.rif on software failure"),
26104
+ auto_send_supout: z111.boolean().optional().describe("Email the generated supout.rif")
25883
26105
  },
25884
26106
  async handler(a, ctx) {
25885
26107
  ctx.info("Setting watchdog configuration");
@@ -25899,7 +26121,7 @@ ${details}`;
25899
26121
  ];
25900
26122
 
25901
26123
  // src/tools/system.ts
25902
- import { z as z111 } from "zod";
26124
+ import { z as z112 } from "zod";
25903
26125
  var systemTools = [
25904
26126
  defineTool({
25905
26127
  name: "get_system_identity",
@@ -25920,7 +26142,7 @@ ${result}`;
25920
26142
  annotations: WRITE,
25921
26143
  description: "Set the system hostname (`/system identity set`) \u2014 the name shown in neighbor discovery, " + "Winbox title bar, and SSH prompts. " + "To read the current value use `get_system_identity`. " + "Returns the updated identity after the change.",
25922
26144
  inputSchema: {
25923
- name: z111.string().describe("New system identity / hostname")
26145
+ name: z112.string().describe("New system identity / hostname")
25924
26146
  },
25925
26147
  async handler(a, ctx) {
25926
26148
  ctx.info(`Setting system identity: name=${a.name}`);
@@ -25992,10 +26214,10 @@ ${result}`;
25992
26214
  annotations: WRITE,
25993
26215
  description: "Set the system date, time, and/or time-zone (`/system clock set`). " + "Provide at least one of `time_zone_name` (e.g. `'Europe/Amsterdam'` or `'manual'`), " + "`date` (e.g. `'jun/19/2026'`), or `time` (e.g. `'13:45:00'`). " + "For automatic time synchronization configure NTP with `set_ntp_client`. " + "Returns the updated clock after the change.",
25994
26216
  inputSchema: {
25995
- time_zone_name: z111.string().optional().describe("e.g. 'Europe/Amsterdam' or 'manual'"),
25996
- date: z111.string().optional().describe("e.g. 'jun/19/2026'"),
25997
- time: z111.string().optional().describe("e.g. '13:45:00'"),
25998
- time_zone_autodetect: z111.boolean().optional().describe("Auto-detect the time zone from the public IP")
26217
+ time_zone_name: z112.string().optional().describe("e.g. 'Europe/Amsterdam' or 'manual'"),
26218
+ date: z112.string().optional().describe("e.g. 'jun/19/2026'"),
26219
+ time: z112.string().optional().describe("e.g. '13:45:00'"),
26220
+ time_zone_autodetect: z112.boolean().optional().describe("Auto-detect the time zone from the public IP")
25999
26221
  },
26000
26222
  async handler(a, ctx) {
26001
26223
  ctx.info("Setting system clock");
@@ -26030,10 +26252,10 @@ ${result}`;
26030
26252
  annotations: WRITE,
26031
26253
  description: "Configure the NTP client (`/system ntp client set`) \u2014 enable or disable it " + "and set the server list as a comma-separated string (e.g. `'0.pool.ntp.org,1.pool.ntp.org'`). " + "To read current NTP status use `get_ntp_client`; " + "to set the clock manually instead use `set_system_clock`. " + "Returns the updated NTP client configuration after the change.",
26032
26254
  inputSchema: {
26033
- enabled: z111.boolean().optional().describe("Enable or disable the NTP client"),
26034
- servers: z111.string().optional().describe("Comma-separated NTP server list"),
26035
- mode: z111.enum(["unicast", "broadcast", "multicast", "manycast"]).optional().describe("NTP client operating mode"),
26036
- vrf: z111.string().optional().describe("VRF the NTP client operates in (e.g. 'main')")
26255
+ enabled: z112.boolean().optional().describe("Enable or disable the NTP client"),
26256
+ servers: z112.string().optional().describe("Comma-separated NTP server list"),
26257
+ mode: z112.enum(["unicast", "broadcast", "multicast", "manycast"]).optional().describe("NTP client operating mode"),
26258
+ vrf: z112.string().optional().describe("VRF the NTP client operates in (e.g. 'main')")
26037
26259
  },
26038
26260
  async handler(a, ctx) {
26039
26261
  ctx.info("Setting NTP client configuration");
@@ -26092,7 +26314,7 @@ ${result}`;
26092
26314
  annotations: DANGEROUS,
26093
26315
  description: "Send a reboot command to the device (`/system reboot`). " + "This is a high-blast-radius action: all connections drop and the device is offline for " + "1-2 minutes while it restarts. " + "Must pass `confirm=true` or the command is rejected without touching the device. " + "For a permanent power-off use `shutdown_system`.",
26094
26316
  inputSchema: {
26095
- confirm: z111.boolean().describe("Must be true to actually reboot the device")
26317
+ confirm: z112.boolean().describe("Must be true to actually reboot the device")
26096
26318
  },
26097
26319
  async handler(a, ctx) {
26098
26320
  if (!a.confirm)
@@ -26108,7 +26330,7 @@ ${result}`;
26108
26330
  annotations: DANGEROUS,
26109
26331
  description: "Power off the device (`/system shutdown`). " + "This is a high-blast-radius action: all connections drop and the device remains offline " + "until physically powered on again. " + "Must pass `confirm=true` or the command is rejected without touching the device. " + "For a temporary restart use `reboot_system`.",
26110
26332
  inputSchema: {
26111
- confirm: z111.boolean().describe("Must be true to actually shut down the device")
26333
+ confirm: z112.boolean().describe("Must be true to actually shut down the device")
26112
26334
  },
26113
26335
  async handler(a, ctx) {
26114
26336
  if (!a.confirm)
@@ -26121,10 +26343,10 @@ ${result}`;
26121
26343
  ];
26122
26344
 
26123
26345
  // src/tools/tunnels.ts
26124
- import { z as z112 } from "zod";
26125
- var DontFragment = z112.enum(["inherit", "no"]);
26126
- var Arp = z112.enum(["disabled", "enabled", "local-proxy-arp", "proxy-arp", "reply-only"]);
26127
- var VtepsIpVersion = z112.enum(["ipv4", "ipv6"]);
26346
+ import { z as z113 } from "zod";
26347
+ var DontFragment = z113.enum(["inherit", "no"]);
26348
+ var Arp = z113.enum(["disabled", "enabled", "local-proxy-arp", "proxy-arp", "reply-only"]);
26349
+ var VtepsIpVersion = z113.enum(["ipv4", "ipv6"]);
26128
26350
  var tunnelTools = [
26129
26351
  defineTool({
26130
26352
  name: "create_gre_tunnel",
@@ -26132,18 +26354,18 @@ var tunnelTools = [
26132
26354
  annotations: WRITE,
26133
26355
  description: "Creates an IPv4 GRE (Generic Routing Encapsulation) L3 tunnel interface (`/interface gre`)." + " Use to encapsulate routed traffic between two endpoints for site-to-site connectivity when IPsec encryption is not needed." + " GRE is L3-only and not bridgeable; for bridgeable L2 Ethernet-over-IP tunnels use create_eoip_tunnel;" + " for raw IP-in-IP with less overhead use create_ipip_tunnel; for L2 VXLAN overlays use create_vxlan_tunnel;" + " for VPN client interfaces use create_l2tp_client, create_pptp_client, create_sstp_client, or create_ovpn_client." + " Keepalive format: '<interval>,<retries>', e.g. '10s,3'." + " Returns the created interface detail including name, remote-address, and run-time status.",
26134
26356
  inputSchema: {
26135
- name: z112.string().describe("Name for the new GRE tunnel interface, e.g. 'gre-to-hq'"),
26136
- remote_address: z112.string().describe("Remote endpoint IP address"),
26137
- local_address: z112.string().optional().describe("Local endpoint IP address"),
26138
- keepalive: z112.string().optional().describe("Keepalive interval/retries, e.g. '10s,3'"),
26357
+ name: z113.string().describe("Name for the new GRE tunnel interface, e.g. 'gre-to-hq'"),
26358
+ remote_address: z113.string().describe("Remote endpoint IP address"),
26359
+ local_address: z113.string().optional().describe("Local endpoint IP address"),
26360
+ keepalive: z113.string().optional().describe("Keepalive interval/retries, e.g. '10s,3'"),
26139
26361
  dont_fragment: DontFragment.optional().describe("Don't-fragment behavior"),
26140
- clamp_tcp_mss: z112.boolean().optional().describe("Clamp TCP MSS to the tunnel MTU"),
26141
- allow_fast_path: z112.boolean().optional().describe("Allow FastPath processing for this tunnel"),
26142
- ipsec_secret: z112.string().optional().describe("Pre-shared key to auto-create an IPsec policy securing the tunnel"),
26143
- dscp: z112.string().optional().describe("DSCP for encapsulated packets: 'inherit' or 0-63"),
26144
- mtu: z112.number().int().optional(),
26145
- comment: z112.string().optional(),
26146
- disabled: z112.boolean().default(false)
26362
+ clamp_tcp_mss: z113.boolean().optional().describe("Clamp TCP MSS to the tunnel MTU"),
26363
+ allow_fast_path: z113.boolean().optional().describe("Allow FastPath processing for this tunnel"),
26364
+ ipsec_secret: z113.string().optional().describe("Pre-shared key to auto-create an IPsec policy securing the tunnel"),
26365
+ dscp: z113.string().optional().describe("DSCP for encapsulated packets: 'inherit' or 0-63"),
26366
+ mtu: z113.number().int().optional(),
26367
+ comment: z113.string().optional(),
26368
+ disabled: z113.boolean().default(false)
26147
26369
  },
26148
26370
  async handler(a, ctx) {
26149
26371
  ctx.info(`Creating GRE tunnel: name=${a.name}, remote_address=${a.remote_address}`);
@@ -26163,7 +26385,7 @@ ${details}` : "GRE tunnel creation completed but unable to verify.";
26163
26385
  annotations: READ,
26164
26386
  description: "Lists all GRE tunnel interfaces (`/interface gre print`)." + " Use to inventory or audit existing GRE tunnels and their remote endpoints." + " Supports optional partial name filter via name_filter." + " For full detail on one tunnel use get_gre_tunnel; for IPIP tunnels use list_ipip_tunnels;" + " for EoIP tunnels use list_eoip_tunnels; for VXLAN use list_vxlan_tunnels." + " Returns name, remote-address, local-address, MTU, and run-time status for each interface.",
26165
26387
  inputSchema: {
26166
- name_filter: z112.string().optional().describe("Partial name match")
26388
+ name_filter: z113.string().optional().describe("Partial name match")
26167
26389
  },
26168
26390
  async handler(a, ctx) {
26169
26391
  ctx.info("Listing GRE tunnels");
@@ -26181,7 +26403,7 @@ ${result}`;
26181
26403
  title: "Get GRE Tunnel Interface Detail",
26182
26404
  annotations: READ,
26183
26405
  description: "Fetches full detail for a single GRE tunnel interface by name (`/interface gre print detail where name=...`)." + " Use to inspect all parameters of one tunnel \u2014 remote-address, local-address, keepalive, MTU, dont-fragment, and status." + " For a summary list of all GRE tunnels use list_gre_tunnels." + " For IPIP detail use get_ipip_tunnel; for EoIP detail use get_eoip_tunnel; for VXLAN detail use get_vxlan_tunnel." + " Returns the complete property set for the named interface, or a not-found message.",
26184
- inputSchema: { name: z112.string() },
26406
+ inputSchema: { name: z113.string() },
26185
26407
  async handler(a, ctx) {
26186
26408
  ctx.info(`Getting GRE tunnel details: name=${a.name}`);
26187
26409
  const result = await executeMikrotikCommand(`/interface gre print detail where name="${a.name}"`, ctx);
@@ -26195,7 +26417,7 @@ ${result}`;
26195
26417
  title: "Remove GRE Tunnel Interface",
26196
26418
  annotations: DESTRUCTIVE,
26197
26419
  description: "Permanently deletes a GRE tunnel interface by name (`/interface gre remove [find name=...]`)." + " Verifies existence via count-only before removal and returns a not-found message if the interface does not exist." + " This is destructive and immediately disconnects any traffic using the tunnel." + " For IPIP removal use remove_ipip_tunnel; for EoIP use remove_eoip_tunnel; for VXLAN use remove_vxlan_tunnel.",
26198
- inputSchema: { name: z112.string() },
26420
+ inputSchema: { name: z113.string() },
26199
26421
  async handler(a, ctx) {
26200
26422
  ctx.info(`Removing GRE tunnel: name=${a.name}`);
26201
26423
  const count = await executeMikrotikCommand(`/interface gre print count-only where name="${a.name}"`, ctx);
@@ -26213,18 +26435,18 @@ ${result}`;
26213
26435
  annotations: WRITE,
26214
26436
  description: "Creates an IPv4 IPIP (IP-in-IP) L3 tunnel interface (`/interface ipip`)." + " Use for lightweight point-to-point IP encapsulation with minimal overhead when GRE's extra header byte is undesirable." + " IPIP is L3-only and not bridgeable; for GRE encapsulation (with dont-fragment support) use create_gre_tunnel;" + " for L2 Ethernet-over-IP tunnels use create_eoip_tunnel; for VXLAN L2 overlays use create_vxlan_tunnel." + " Keepalive format: '<interval>,<retries>', e.g. '10s,3'." + " Returns the created interface detail including name, remote-address, and run-time status.",
26215
26437
  inputSchema: {
26216
- name: z112.string().describe("Name for the new IPIP tunnel interface, e.g. 'ipip-to-hq'"),
26217
- remote_address: z112.string().describe("Remote endpoint IP address"),
26218
- local_address: z112.string().optional().describe("Local endpoint IP address"),
26219
- keepalive: z112.string().optional().describe("Keepalive interval/retries, e.g. '10s,3'"),
26438
+ name: z113.string().describe("Name for the new IPIP tunnel interface, e.g. 'ipip-to-hq'"),
26439
+ remote_address: z113.string().describe("Remote endpoint IP address"),
26440
+ local_address: z113.string().optional().describe("Local endpoint IP address"),
26441
+ keepalive: z113.string().optional().describe("Keepalive interval/retries, e.g. '10s,3'"),
26220
26442
  dont_fragment: DontFragment.optional().describe("Don't-fragment behavior"),
26221
- clamp_tcp_mss: z112.boolean().optional().describe("Clamp TCP MSS to the tunnel MTU"),
26222
- allow_fast_path: z112.boolean().optional().describe("Allow FastPath processing for this tunnel"),
26223
- ipsec_secret: z112.string().optional().describe("Pre-shared key to auto-create an IPsec policy securing the tunnel"),
26224
- dscp: z112.string().optional().describe("DSCP for encapsulated packets: 'inherit' or 0-63"),
26225
- mtu: z112.number().int().optional(),
26226
- comment: z112.string().optional(),
26227
- disabled: z112.boolean().default(false)
26443
+ clamp_tcp_mss: z113.boolean().optional().describe("Clamp TCP MSS to the tunnel MTU"),
26444
+ allow_fast_path: z113.boolean().optional().describe("Allow FastPath processing for this tunnel"),
26445
+ ipsec_secret: z113.string().optional().describe("Pre-shared key to auto-create an IPsec policy securing the tunnel"),
26446
+ dscp: z113.string().optional().describe("DSCP for encapsulated packets: 'inherit' or 0-63"),
26447
+ mtu: z113.number().int().optional(),
26448
+ comment: z113.string().optional(),
26449
+ disabled: z113.boolean().default(false)
26228
26450
  },
26229
26451
  async handler(a, ctx) {
26230
26452
  ctx.info(`Creating IPIP tunnel: name=${a.name}, remote_address=${a.remote_address}`);
@@ -26244,7 +26466,7 @@ ${details}` : "IPIP tunnel creation completed but unable to verify.";
26244
26466
  annotations: READ,
26245
26467
  description: "Lists all IPIP tunnel interfaces (`/interface ipip print`)." + " Use to inventory existing IPIP tunnels and their remote endpoints." + " Supports optional partial name filter via name_filter." + " For full detail on one tunnel use get_ipip_tunnel; for GRE tunnels use list_gre_tunnels;" + " for EoIP tunnels use list_eoip_tunnels; for VXLAN use list_vxlan_tunnels." + " Returns name, remote-address, local-address, MTU, and run-time status for each interface.",
26246
26468
  inputSchema: {
26247
- name_filter: z112.string().optional().describe("Partial name match")
26469
+ name_filter: z113.string().optional().describe("Partial name match")
26248
26470
  },
26249
26471
  async handler(a, ctx) {
26250
26472
  ctx.info("Listing IPIP tunnels");
@@ -26262,7 +26484,7 @@ ${result}`;
26262
26484
  title: "Get IPIP Tunnel Interface Detail",
26263
26485
  annotations: READ,
26264
26486
  description: "Fetches full detail for a single IPIP tunnel interface by name (`/interface ipip print detail where name=...`)." + " Use to inspect all parameters of one tunnel \u2014 remote-address, local-address, keepalive, MTU, and status." + " For a summary list of all IPIP tunnels use list_ipip_tunnels." + " For GRE detail use get_gre_tunnel; for EoIP detail use get_eoip_tunnel; for VXLAN detail use get_vxlan_tunnel." + " Returns the complete property set for the named interface, or a not-found message.",
26265
- inputSchema: { name: z112.string() },
26487
+ inputSchema: { name: z113.string() },
26266
26488
  async handler(a, ctx) {
26267
26489
  ctx.info(`Getting IPIP tunnel details: name=${a.name}`);
26268
26490
  const result = await executeMikrotikCommand(`/interface ipip print detail where name="${a.name}"`, ctx);
@@ -26276,7 +26498,7 @@ ${result}`;
26276
26498
  title: "Remove IPIP Tunnel Interface",
26277
26499
  annotations: DESTRUCTIVE,
26278
26500
  description: "Permanently deletes an IPIP tunnel interface by name (`/interface ipip remove [find name=...]`)." + " Verifies existence via count-only before removal and returns a not-found message if the interface does not exist." + " This is destructive and immediately disconnects any traffic using the tunnel." + " For GRE removal use remove_gre_tunnel; for EoIP use remove_eoip_tunnel; for VXLAN use remove_vxlan_tunnel.",
26279
- inputSchema: { name: z112.string() },
26501
+ inputSchema: { name: z113.string() },
26280
26502
  async handler(a, ctx) {
26281
26503
  ctx.info(`Removing IPIP tunnel: name=${a.name}`);
26282
26504
  const count = await executeMikrotikCommand(`/interface ipip print count-only where name="${a.name}"`, ctx);
@@ -26294,22 +26516,22 @@ ${result}`;
26294
26516
  annotations: WRITE,
26295
26517
  description: "Creates an EoIP (Ethernet over IP) L2 tunnel interface (`/interface eoip`)." + " Use when you need a bridgeable L2 link between two MikroTik devices \u2014 traffic appears as raw Ethernet frames over IP." + " Each tunnel requires a unique tunnel_id (0-65535) that must match identically on both peers; mismatched IDs are the most common misconfiguration." + " EoIP is MikroTik-proprietary \u2014 both endpoints must run RouterOS." + " For L3-only encapsulation use create_gre_tunnel or create_ipip_tunnel; for open-standard L2 overlays use create_vxlan_tunnel." + " Keepalive format: '<interval>,<retries>', e.g. '10s,3'." + " Returns the created interface detail including name, remote-address, tunnel-id, and run-time status.",
26296
26518
  inputSchema: {
26297
- name: z112.string().describe("Name for the new EoIP tunnel interface, e.g. 'eoip-to-hq'"),
26298
- remote_address: z112.string().describe("Remote endpoint IP address"),
26299
- tunnel_id: z112.number().int().describe("Unique tunnel ID, must match on both peers"),
26300
- local_address: z112.string().optional().describe("Local endpoint IP address"),
26301
- keepalive: z112.string().optional().describe("Keepalive interval/retries, e.g. '10s,3'"),
26519
+ name: z113.string().describe("Name for the new EoIP tunnel interface, e.g. 'eoip-to-hq'"),
26520
+ remote_address: z113.string().describe("Remote endpoint IP address"),
26521
+ tunnel_id: z113.number().int().describe("Unique tunnel ID, must match on both peers"),
26522
+ local_address: z113.string().optional().describe("Local endpoint IP address"),
26523
+ keepalive: z113.string().optional().describe("Keepalive interval/retries, e.g. '10s,3'"),
26302
26524
  dont_fragment: DontFragment.optional().describe("Don't-fragment behavior"),
26303
- clamp_tcp_mss: z112.boolean().optional().describe("Clamp TCP MSS to the tunnel MTU"),
26304
- allow_fast_path: z112.boolean().optional().describe("Allow FastPath processing for this tunnel"),
26305
- ipsec_secret: z112.string().optional().describe("Pre-shared key to auto-create an IPsec policy securing the tunnel"),
26306
- dscp: z112.string().optional().describe("DSCP for encapsulated packets: 'inherit' or 0-63"),
26307
- mac_address: z112.string().optional().describe("MAC address of the EoIP interface"),
26525
+ clamp_tcp_mss: z113.boolean().optional().describe("Clamp TCP MSS to the tunnel MTU"),
26526
+ allow_fast_path: z113.boolean().optional().describe("Allow FastPath processing for this tunnel"),
26527
+ ipsec_secret: z113.string().optional().describe("Pre-shared key to auto-create an IPsec policy securing the tunnel"),
26528
+ dscp: z113.string().optional().describe("DSCP for encapsulated packets: 'inherit' or 0-63"),
26529
+ mac_address: z113.string().optional().describe("MAC address of the EoIP interface"),
26308
26530
  arp: Arp.optional().describe("Address Resolution Protocol mode for the interface"),
26309
- arp_timeout: z112.string().optional().describe("ARP entry timeout, e.g. '30s' or 'auto'"),
26310
- mtu: z112.number().int().optional(),
26311
- comment: z112.string().optional(),
26312
- disabled: z112.boolean().default(false)
26531
+ arp_timeout: z113.string().optional().describe("ARP entry timeout, e.g. '30s' or 'auto'"),
26532
+ mtu: z113.number().int().optional(),
26533
+ comment: z113.string().optional(),
26534
+ disabled: z113.boolean().default(false)
26313
26535
  },
26314
26536
  async handler(a, ctx) {
26315
26537
  ctx.info(`Creating EoIP tunnel: name=${a.name}, remote_address=${a.remote_address}, tunnel_id=${a.tunnel_id}`);
@@ -26329,7 +26551,7 @@ ${details}` : "EoIP tunnel creation completed but unable to verify.";
26329
26551
  annotations: READ,
26330
26552
  description: "Lists all EoIP tunnel interfaces (`/interface eoip print`)." + " Use to inventory existing EoIP tunnels and check their tunnel-id assignments to detect duplicates or mismatches." + " Supports optional partial name filter via name_filter." + " For full detail on one tunnel use get_eoip_tunnel; for GRE tunnels use list_gre_tunnels;" + " for IPIP tunnels use list_ipip_tunnels; for VXLAN use list_vxlan_tunnels." + " Returns name, remote-address, tunnel-id, MTU, and run-time status for each interface.",
26331
26553
  inputSchema: {
26332
- name_filter: z112.string().optional().describe("Partial name match")
26554
+ name_filter: z113.string().optional().describe("Partial name match")
26333
26555
  },
26334
26556
  async handler(a, ctx) {
26335
26557
  ctx.info("Listing EoIP tunnels");
@@ -26347,7 +26569,7 @@ ${result}`;
26347
26569
  title: "Get EoIP Tunnel Interface Detail",
26348
26570
  annotations: READ,
26349
26571
  description: "Fetches full detail for a single EoIP tunnel interface by name (`/interface eoip print detail where name=...`)." + " Use to inspect the tunnel-id, remote-address, local-address, keepalive, MTU, and status of one tunnel." + " For a summary list of all EoIP tunnels use list_eoip_tunnels." + " For GRE detail use get_gre_tunnel; for IPIP detail use get_ipip_tunnel; for VXLAN detail use get_vxlan_tunnel." + " Returns the complete property set for the named interface, or a not-found message.",
26350
- inputSchema: { name: z112.string() },
26572
+ inputSchema: { name: z113.string() },
26351
26573
  async handler(a, ctx) {
26352
26574
  ctx.info(`Getting EoIP tunnel details: name=${a.name}`);
26353
26575
  const result = await executeMikrotikCommand(`/interface eoip print detail where name="${a.name}"`, ctx);
@@ -26361,7 +26583,7 @@ ${result}`;
26361
26583
  title: "Remove EoIP Tunnel Interface",
26362
26584
  annotations: DESTRUCTIVE,
26363
26585
  description: "Permanently deletes an EoIP tunnel interface by name (`/interface eoip remove [find name=...]`)." + " Verifies existence via count-only before removal and returns a not-found message if the interface does not exist." + " This is destructive and immediately severs the L2 bridge link using this tunnel." + " For GRE removal use remove_gre_tunnel; for IPIP use remove_ipip_tunnel; for VXLAN use remove_vxlan_tunnel.",
26364
- inputSchema: { name: z112.string() },
26586
+ inputSchema: { name: z113.string() },
26365
26587
  async handler(a, ctx) {
26366
26588
  ctx.info(`Removing EoIP tunnel: name=${a.name}`);
26367
26589
  const count = await executeMikrotikCommand(`/interface eoip print count-only where name="${a.name}"`, ctx);
@@ -26379,21 +26601,21 @@ ${result}`;
26379
26601
  annotations: WRITE,
26380
26602
  description: "Creates a VXLAN (Virtual Extensible LAN) L2 overlay interface (`/interface vxlan`)." + " Use to build scalable L2 overlays across L3 networks \u2014 the VNI (VXLAN Network Identifier) scopes the broadcast domain, suited for multi-tenant or data-centre scenarios." + " VXLAN is an open standard and works with non-MikroTik peers; for MikroTik-proprietary L2 tunnels use create_eoip_tunnel;" + " for L3-only encapsulation use create_gre_tunnel or create_ipip_tunnel." + " UDP port defaults to 8472; VNI must match on all participating VTEPs." + " Returns the created interface detail including name, VNI, port, and run-time status.",
26381
26603
  inputSchema: {
26382
- name: z112.string().describe("Name for the new VXLAN interface, e.g. 'vxlan1'"),
26383
- vni: z112.number().int().describe("VXLAN Network Identifier (VNI)"),
26384
- port: z112.number().int().default(8472).describe("UDP port (default 8472)"),
26385
- local_address: z112.string().optional().describe("Local source IP address"),
26386
- interface: z112.string().optional().describe("Source interface"),
26387
- group: z112.string().optional().describe("Multicast group address for broadcast/unknown-unicast flooding"),
26604
+ name: z113.string().describe("Name for the new VXLAN interface, e.g. 'vxlan1'"),
26605
+ vni: z113.number().int().describe("VXLAN Network Identifier (VNI)"),
26606
+ port: z113.number().int().default(8472).describe("UDP port (default 8472)"),
26607
+ local_address: z113.string().optional().describe("Local source IP address"),
26608
+ interface: z113.string().optional().describe("Source interface"),
26609
+ group: z113.string().optional().describe("Multicast group address for broadcast/unknown-unicast flooding"),
26388
26610
  vteps_ip_version: VtepsIpVersion.optional().describe("IP version used for VTEP addressing"),
26389
- mac_address: z112.string().optional().describe("MAC address of the VXLAN interface"),
26611
+ mac_address: z113.string().optional().describe("MAC address of the VXLAN interface"),
26390
26612
  arp: Arp.optional().describe("Address Resolution Protocol mode for the interface"),
26391
- arp_timeout: z112.string().optional().describe("ARP entry timeout, e.g. '30s' or 'auto'"),
26392
- max_fdb_size: z112.number().int().optional().describe("Maximum forwarding database (FDB) size"),
26393
- allow_fast_path: z112.boolean().optional().describe("Allow FastPath processing for this interface"),
26394
- mtu: z112.number().int().optional(),
26395
- comment: z112.string().optional(),
26396
- disabled: z112.boolean().default(false)
26613
+ arp_timeout: z113.string().optional().describe("ARP entry timeout, e.g. '30s' or 'auto'"),
26614
+ max_fdb_size: z113.number().int().optional().describe("Maximum forwarding database (FDB) size"),
26615
+ allow_fast_path: z113.boolean().optional().describe("Allow FastPath processing for this interface"),
26616
+ mtu: z113.number().int().optional(),
26617
+ comment: z113.string().optional(),
26618
+ disabled: z113.boolean().default(false)
26397
26619
  },
26398
26620
  async handler(a, ctx) {
26399
26621
  ctx.info(`Creating VXLAN tunnel: name=${a.name}, vni=${a.vni}`);
@@ -26413,7 +26635,7 @@ ${details}` : "VXLAN tunnel creation completed but unable to verify.";
26413
26635
  annotations: READ,
26414
26636
  description: "Lists all VXLAN interfaces (`/interface vxlan print`)." + " Use to inventory existing VXLAN overlays and check their VNI and UDP port assignments." + " Supports optional partial name filter via name_filter." + " For full detail on one interface use get_vxlan_tunnel; for EoIP tunnels use list_eoip_tunnels;" + " for GRE tunnels use list_gre_tunnels; for IPIP tunnels use list_ipip_tunnels." + " Returns name, VNI, port, local-address, MTU, and run-time status for each interface.",
26415
26637
  inputSchema: {
26416
- name_filter: z112.string().optional().describe("Partial name match")
26638
+ name_filter: z113.string().optional().describe("Partial name match")
26417
26639
  },
26418
26640
  async handler(a, ctx) {
26419
26641
  ctx.info("Listing VXLAN tunnels");
@@ -26431,7 +26653,7 @@ ${result}`;
26431
26653
  title: "Get VXLAN Tunnel Interface Detail",
26432
26654
  annotations: READ,
26433
26655
  description: "Fetches full detail for a single VXLAN interface by name (`/interface vxlan print detail where name=...`)." + " Use to inspect the VNI, UDP port, local-address, source interface, MTU, and status of one VXLAN interface." + " For a summary list of all VXLAN interfaces use list_vxlan_tunnels." + " For EoIP detail use get_eoip_tunnel; for GRE detail use get_gre_tunnel; for IPIP detail use get_ipip_tunnel." + " Returns the complete property set for the named interface, or a not-found message.",
26434
- inputSchema: { name: z112.string() },
26656
+ inputSchema: { name: z113.string() },
26435
26657
  async handler(a, ctx) {
26436
26658
  ctx.info(`Getting VXLAN tunnel details: name=${a.name}`);
26437
26659
  const result = await executeMikrotikCommand(`/interface vxlan print detail where name="${a.name}"`, ctx);
@@ -26445,7 +26667,7 @@ ${result}`;
26445
26667
  title: "Remove VXLAN Tunnel Interface",
26446
26668
  annotations: DESTRUCTIVE,
26447
26669
  description: "Permanently deletes a VXLAN interface by name (`/interface vxlan remove [find name=...]`)." + " Verifies existence via count-only before removal and returns a not-found message if the interface does not exist." + " This is destructive and immediately severs all L2 overlay traffic using this VNI endpoint." + " For EoIP removal use remove_eoip_tunnel; for GRE use remove_gre_tunnel; for IPIP use remove_ipip_tunnel.",
26448
- inputSchema: { name: z112.string() },
26670
+ inputSchema: { name: z113.string() },
26449
26671
  async handler(a, ctx) {
26450
26672
  ctx.info(`Removing VXLAN tunnel: name=${a.name}`);
26451
26673
  const count = await executeMikrotikCommand(`/interface vxlan print count-only where name="${a.name}"`, ctx);
@@ -26460,7 +26682,7 @@ ${result}`;
26460
26682
  ];
26461
26683
 
26462
26684
  // src/tools/user-manager.ts
26463
- import { z as z113 } from "zod";
26685
+ import { z as z114 } from "zod";
26464
26686
  var NOT_AVAILABLE3 = "User Manager is not available on this device (package not installed).";
26465
26687
  var userManagerTools = [
26466
26688
  defineTool({
@@ -26484,12 +26706,12 @@ ${result}`;
26484
26706
  annotations: WRITE_IDEMPOTENT,
26485
26707
  description: "Updates the global User Manager daemon configuration (`/user-manager set`) \u2014 toggle the" + " built-in RADIUS server on/off (`enabled`), set the TLS certificate, or enable the" + " profile/payment subsystem (`use_profiles`). Applies changes idempotently to the single" + " global settings entry; returns the full updated settings after applying. For per-user" + " changes use update_user_manager_user; for profile creation use add_user_manager_profile.",
26486
26708
  inputSchema: {
26487
- enabled: z113.boolean().optional().describe("Enable or disable the User Manager server"),
26488
- certificate: z113.string().optional().describe("TLS certificate name for RADIUS over TLS"),
26489
- radsec_certificate: z113.string().optional().describe("Certificate name for RadSec (RADIUS over TLS)"),
26490
- accounting_port: z113.number().int().optional().describe("UDP port for RADIUS accounting"),
26491
- authentication_port: z113.number().int().optional().describe("UDP port for RADIUS authentication"),
26492
- use_profiles: z113.boolean().optional().describe("Enable the profile/payment subsystem")
26709
+ enabled: z114.boolean().optional().describe("Enable or disable the User Manager server"),
26710
+ certificate: z114.string().optional().describe("TLS certificate name for RADIUS over TLS"),
26711
+ radsec_certificate: z114.string().optional().describe("Certificate name for RadSec (RADIUS over TLS)"),
26712
+ accounting_port: z114.number().int().optional().describe("UDP port for RADIUS accounting"),
26713
+ authentication_port: z114.number().int().optional().describe("UDP port for RADIUS authentication"),
26714
+ use_profiles: z114.boolean().optional().describe("Enable the profile/payment subsystem")
26493
26715
  },
26494
26716
  async handler(a, ctx) {
26495
26717
  ctx.info("Updating User Manager settings");
@@ -26513,15 +26735,15 @@ ${details}`;
26513
26735
  annotations: WRITE,
26514
26736
  description: "Creates a new user in the User Manager RADIUS database (`/user-manager user add`) \u2014 for" + " hotspot, PPP, or 802.1X authentication managed by the built-in RADIUS server. Not for" + " local router login accounts; for those use add_user. Supply `name` and `password`;" + " optionally set `group`, `shared_users` (max simultaneous sessions), and custom RADIUS" + " `attributes`. Returns the created user's detail with secrets redacted.",
26515
26737
  inputSchema: {
26516
- name: z113.string().describe("Login name for the user"),
26517
- password: z113.string().describe("Login password for the user"),
26518
- group: z113.string().optional(),
26519
- shared_users: z113.number().int().optional().describe("Max simultaneous sessions"),
26520
- attributes: z113.string().optional().describe("Custom RADIUS attributes"),
26521
- caller_id: z113.string().optional().describe("Caller ID the user is restricted to (e.g. MAC)"),
26522
- otp_secret: z113.string().optional().describe("Base32 OTP shared secret for two-factor auth"),
26523
- comment: z113.string().optional(),
26524
- disabled: z113.boolean().default(false)
26738
+ name: z114.string().describe("Login name for the user"),
26739
+ password: z114.string().describe("Login password for the user"),
26740
+ group: z114.string().optional(),
26741
+ shared_users: z114.number().int().optional().describe("Max simultaneous sessions"),
26742
+ attributes: z114.string().optional().describe("Custom RADIUS attributes"),
26743
+ caller_id: z114.string().optional().describe("Caller ID the user is restricted to (e.g. MAC)"),
26744
+ otp_secret: z114.string().optional().describe("Base32 OTP shared secret for two-factor auth"),
26745
+ comment: z114.string().optional(),
26746
+ disabled: z114.boolean().default(false)
26525
26747
  },
26526
26748
  async handler(a, ctx) {
26527
26749
  ctx.info(`Adding User Manager user: name=${a.name}`);
@@ -26543,7 +26765,7 @@ ${redactSecrets(details)}` : "User Manager user creation completed but unable to
26543
26765
  annotations: READ,
26544
26766
  description: "Returns all users in the User Manager RADIUS database (`/user-manager user print`) \u2014 the" + " accounts that authenticate against the built-in RADIUS server for hotspot, PPP, or 802.1X." + " Optionally filter by partial `name_filter`. Not for local router login accounts; for those" + " use list_users. Returns user list with secrets redacted; for full" + " single-user detail use get_user_manager_user.",
26545
26767
  inputSchema: {
26546
- name_filter: z113.string().optional().describe("Partial name match")
26768
+ name_filter: z114.string().optional().describe("Partial name match")
26547
26769
  },
26548
26770
  async handler(a, ctx) {
26549
26771
  ctx.info("Listing User Manager users");
@@ -26563,7 +26785,7 @@ ${redactSecrets(result)}`;
26563
26785
  title: "Get User Manager RADIUS User Detail",
26564
26786
  annotations: READ,
26565
26787
  description: "Returns full detail for a single User Manager RADIUS user" + " (`/user-manager user print detail where name=`) \u2014 all fields including group," + " shared-users limit, RADIUS attributes, and status, with secrets redacted. Use when you" + " need the complete record for one user by exact name. To browse all users use" + " list_user_manager_users; to modify the record use update_user_manager_user.",
26566
- inputSchema: { name: z113.string() },
26788
+ inputSchema: { name: z114.string() },
26567
26789
  async handler(a, ctx) {
26568
26790
  ctx.info(`Getting User Manager user details: name=${a.name}`);
26569
26791
  const result = await executeMikrotikCommand(`/user-manager user print detail where name="${a.name}"`, ctx);
@@ -26580,16 +26802,16 @@ ${redactSecrets(result)}`;
26580
26802
  annotations: WRITE_IDEMPOTENT,
26581
26803
  description: "Modifies an existing User Manager RADIUS user (`/user-manager user set [find name=...]`)" + " \u2014 change name, password, group, shared-users limit, RADIUS attributes, comment, or" + " enabled/disabled state. Locate the user by its current `name` (from" + " list_user_manager_users or get_user_manager_user). Returns the updated record with" + " secrets redacted. To permanently delete the user use remove_user_manager_user.",
26582
26804
  inputSchema: {
26583
- name: z113.string().describe("Current name of the user to update"),
26584
- new_name: z113.string().optional(),
26585
- password: z113.string().optional(),
26586
- group: z113.string().optional(),
26587
- shared_users: z113.number().int().optional(),
26588
- attributes: z113.string().optional(),
26589
- caller_id: z113.string().optional().describe("Caller ID the user is restricted to (e.g. MAC)"),
26590
- otp_secret: z113.string().optional().describe("Base32 OTP shared secret for two-factor auth"),
26591
- comment: z113.string().optional(),
26592
- disabled: z113.boolean().optional()
26805
+ name: z114.string().describe("Current name of the user to update"),
26806
+ new_name: z114.string().optional(),
26807
+ password: z114.string().optional(),
26808
+ group: z114.string().optional(),
26809
+ shared_users: z114.number().int().optional(),
26810
+ attributes: z114.string().optional(),
26811
+ caller_id: z114.string().optional().describe("Caller ID the user is restricted to (e.g. MAC)"),
26812
+ otp_secret: z114.string().optional().describe("Base32 OTP shared secret for two-factor auth"),
26813
+ comment: z114.string().optional(),
26814
+ disabled: z114.boolean().optional()
26593
26815
  },
26594
26816
  async handler(a, ctx) {
26595
26817
  ctx.info(`Updating User Manager user: name=${a.name}`);
@@ -26613,7 +26835,7 @@ ${redactSecrets(details)}`;
26613
26835
  title: "Remove User Manager RADIUS User",
26614
26836
  annotations: DESTRUCTIVE,
26615
26837
  description: "Permanently deletes a User Manager RADIUS user (`/user-manager user remove [find name=...]`)" + " \u2014 verifies the user exists via count-only check first, then removes them. Does NOT" + " automatically remove the user's profile assignments; check list_user_manager_user_profiles" + " first. To disable without deleting use update_user_manager_user with `disabled=true`.",
26616
- inputSchema: { name: z113.string() },
26838
+ inputSchema: { name: z114.string() },
26617
26839
  async handler(a, ctx) {
26618
26840
  ctx.info(`Removing User Manager user: name=${a.name}`);
26619
26841
  const count = await executeMikrotikCommand(`/user-manager user print count-only where name="${a.name}"`, ctx);
@@ -26633,13 +26855,13 @@ ${redactSecrets(details)}`;
26633
26855
  annotations: WRITE,
26634
26856
  description: "Creates a new User Manager service/billing profile (`/user-manager profile add`) \u2014 a named" + " plan template that defines validity period (e.g. '30d'), price, and session override" + " limits (`starts_when`, `override_shared_users`) that can be assigned to users. Profiles are" + " templates only; to link a profile to a specific user use assign_user_manager_profile. For" + " rate/quota constraints attach a limitation (add_user_manager_limitation). Returns the" + " created profile's detail.",
26635
26857
  inputSchema: {
26636
- name: z113.string().describe("Profile name"),
26637
- name_for_users: z113.string().optional().describe("Display name shown to users"),
26638
- validity: z113.string().optional().describe("Validity period, e.g. '30d'"),
26639
- price: z113.number().optional(),
26640
- starts_when: z113.enum(["assigned", "first-auth"]).optional(),
26641
- override_shared_users: z113.string().optional(),
26642
- comment: z113.string().optional()
26858
+ name: z114.string().describe("Profile name"),
26859
+ name_for_users: z114.string().optional().describe("Display name shown to users"),
26860
+ validity: z114.string().optional().describe("Validity period, e.g. '30d'"),
26861
+ price: z114.number().optional(),
26862
+ starts_when: z114.enum(["assigned", "first-auth"]).optional(),
26863
+ override_shared_users: z114.string().optional(),
26864
+ comment: z114.string().optional()
26643
26865
  },
26644
26866
  async handler(a, ctx) {
26645
26867
  ctx.info(`Adding User Manager profile: name=${a.name}`);
@@ -26661,7 +26883,7 @@ ${details}` : "User Manager profile creation completed but unable to verify.";
26661
26883
  annotations: READ,
26662
26884
  description: "Returns all User Manager service/billing profile templates (`/user-manager profile print`)" + " \u2014 the named plans defining validity, price, and session limits. Optionally filter by" + " partial `name_filter`. Not the same as user-profile assignments; to see which profiles" + " are linked to which users use list_user_manager_user_profiles. Returns profile list.",
26663
26885
  inputSchema: {
26664
- name_filter: z113.string().optional().describe("Partial name match")
26886
+ name_filter: z114.string().optional().describe("Partial name match")
26665
26887
  },
26666
26888
  async handler(a, ctx) {
26667
26889
  ctx.info("Listing User Manager profiles");
@@ -26681,7 +26903,7 @@ ${result}`;
26681
26903
  title: "Remove User Manager Service Profile",
26682
26904
  annotations: DESTRUCTIVE,
26683
26905
  description: "Permanently deletes a User Manager service/billing profile" + " (`/user-manager profile remove [find name=...]`) \u2014 verifies existence via count-only check" + " first, then removes the plan template. Does NOT automatically remove existing user-profile" + " assignments that reference this profile; check list_user_manager_user_profiles before" + " removing to avoid orphaned assignments. For creating a profile use add_user_manager_profile.",
26684
- inputSchema: { name: z113.string() },
26906
+ inputSchema: { name: z114.string() },
26685
26907
  async handler(a, ctx) {
26686
26908
  ctx.info(`Removing User Manager profile: name=${a.name}`);
26687
26909
  const count = await executeMikrotikCommand(`/user-manager profile print count-only where name="${a.name}"`, ctx);
@@ -26701,8 +26923,8 @@ ${result}`;
26701
26923
  annotations: WRITE,
26702
26924
  description: "Creates a user-profile assignment in User Manager (`/user-manager user-profile add`) \u2014" + " links an existing service profile plan to a specific user so the user inherits the plan's" + " limits (rate, transfer, validity). Both `user` and `profile` must already exist; to create" + " a user use add_user_manager_user; to create a profile use add_user_manager_profile. To view" + " existing assignments use list_user_manager_user_profiles.",
26703
26925
  inputSchema: {
26704
- user: z113.string().describe("User to assign the profile to"),
26705
- profile: z113.string().describe("Profile to assign")
26926
+ user: z114.string().describe("User to assign the profile to"),
26927
+ profile: z114.string().describe("Profile to assign")
26706
26928
  },
26707
26929
  async handler(a, ctx) {
26708
26930
  ctx.info(`Assigning profile '${a.profile}' to user '${a.user}'`);
@@ -26723,7 +26945,7 @@ ${result}`;
26723
26945
  annotations: READ,
26724
26946
  description: "Returns all User Manager user-to-profile assignment records" + " (`/user-manager user-profile print`) \u2014 shows which service profile plan is linked to each" + " user. Optionally filter by partial `user_filter`. Not the same as listing profile" + " definitions; for the plan templates themselves use list_user_manager_profiles. To create an" + " assignment use assign_user_manager_profile.",
26725
26947
  inputSchema: {
26726
- user_filter: z113.string().optional().describe("Partial user match")
26948
+ user_filter: z114.string().optional().describe("Partial user match")
26727
26949
  },
26728
26950
  async handler(a, ctx) {
26729
26951
  ctx.info("Listing User Manager user-profiles");
@@ -26744,13 +26966,13 @@ ${result}`;
26744
26966
  annotations: WRITE,
26745
26967
  description: "Registers a new RADIUS client (router or NAS device) in User Manager" + " (`/user-manager router add`) \u2014 the network device that forwards authentication requests to" + " this built-in RADIUS server. Requires a friendly `name`, the client's IP `address`, and a" + " `shared_secret`; optionally set the CoA port. Not related to IP routing; for routing table" + " entries use add_route. Returns the created entry with secrets redacted.",
26746
26968
  inputSchema: {
26747
- name: z113.string().describe("Friendly name for the RADIUS client"),
26748
- address: z113.string().describe("IP address of the RADIUS client"),
26749
- shared_secret: z113.string().describe("Shared secret for the RADIUS client"),
26750
- coa_port: z113.number().int().optional().describe("Change-of-Authorization port"),
26751
- protocol: z113.string().optional().describe("RADIUS transport protocol for this client (e.g. radius, radsec)"),
26752
- comment: z113.string().optional(),
26753
- disabled: z113.boolean().default(false)
26969
+ name: z114.string().describe("Friendly name for the RADIUS client"),
26970
+ address: z114.string().describe("IP address of the RADIUS client"),
26971
+ shared_secret: z114.string().describe("Shared secret for the RADIUS client"),
26972
+ coa_port: z114.number().int().optional().describe("Change-of-Authorization port"),
26973
+ protocol: z114.string().optional().describe("RADIUS transport protocol for this client (e.g. radius, radsec)"),
26974
+ comment: z114.string().optional(),
26975
+ disabled: z114.boolean().default(false)
26754
26976
  },
26755
26977
  async handler(a, ctx) {
26756
26978
  ctx.info(`Adding User Manager router: name=${a.name}, address=${a.address}`);
@@ -26772,7 +26994,7 @@ ${redactSecrets(details)}` : "User Manager router creation completed but unable
26772
26994
  annotations: READ,
26773
26995
  description: "Returns all RADIUS clients (routers/NAS devices) registered in User Manager" + " (`/user-manager router print`) \u2014 the devices authorized to forward authentication requests" + " to this built-in RADIUS server. Optionally filter by partial `name_filter`. Not related to" + " IP routing; for routing table entries use list_routes. Returns entries with secrets redacted.",
26774
26996
  inputSchema: {
26775
- name_filter: z113.string().optional().describe("Partial name match")
26997
+ name_filter: z114.string().optional().describe("Partial name match")
26776
26998
  },
26777
26999
  async handler(a, ctx) {
26778
27000
  ctx.info("Listing User Manager routers");
@@ -26792,7 +27014,7 @@ ${redactSecrets(result)}`;
26792
27014
  title: "Remove User Manager RADIUS Client (Router/NAS)",
26793
27015
  annotations: DESTRUCTIVE,
26794
27016
  description: "Permanently removes a RADIUS client (router/NAS) from User Manager" + " (`/user-manager router remove [find name=...]`) \u2014 verifies existence via count-only check" + " first, then deletes the entry. The device will no longer be able to forward authentication" + " requests to this RADIUS server after removal. Not related to IP routing; for routing table" + " management use remove_route.",
26795
- inputSchema: { name: z113.string() },
27017
+ inputSchema: { name: z114.string() },
26796
27018
  async handler(a, ctx) {
26797
27019
  ctx.info(`Removing User Manager router: name=${a.name}`);
26798
27020
  const count = await executeMikrotikCommand(`/user-manager router print count-only where name="${a.name}"`, ctx);
@@ -26812,25 +27034,25 @@ ${redactSecrets(result)}`;
26812
27034
  annotations: WRITE,
26813
27035
  description: "Creates a new User Manager limitation template (`/user-manager limitation add`) \u2014 a reusable" + " named set of rate and quota constraints: download rate (`rate_limit_rx`, e.g. '10M')," + " upload rate (`rate_limit_tx`), total transfer cap (`transfer_limit`, e.g. '10G'), and" + " uptime cap (`uptime_limit`, e.g. '1d'). Limitations are templates attached to profiles, not" + " users directly; for service plan templates use add_user_manager_profile. Returns the created" + " limitation's detail.",
26814
27036
  inputSchema: {
26815
- name: z113.string().describe("Limitation name"),
26816
- rate_limit_rx: z113.string().optional().describe("Download rate limit, e.g. '10M'"),
26817
- rate_limit_tx: z113.string().optional().describe("Upload rate limit, e.g. '10M'"),
26818
- rate_limit_min_rx: z113.string().optional().describe("Guaranteed (CIR) download rate, e.g. '2M'"),
26819
- rate_limit_min_tx: z113.string().optional().describe("Guaranteed (CIR) upload rate, e.g. '2M'"),
26820
- rate_limit_burst_rx: z113.string().optional().describe("Download burst rate, e.g. '20M'"),
26821
- rate_limit_burst_tx: z113.string().optional().describe("Upload burst rate, e.g. '20M'"),
26822
- rate_limit_burst_threshold_rx: z113.string().optional().describe("Download burst threshold rate"),
26823
- rate_limit_burst_threshold_tx: z113.string().optional().describe("Upload burst threshold rate"),
26824
- rate_limit_burst_time_rx: z113.string().optional().describe("Download burst time, e.g. '10s'"),
26825
- rate_limit_burst_time_tx: z113.string().optional().describe("Upload burst time, e.g. '10s'"),
26826
- rate_limit_priority: z113.number().int().optional().describe("Queue priority (1-8)"),
26827
- download_limit: z113.string().optional().describe("Download transfer cap in bytes, e.g. '5G'"),
26828
- upload_limit: z113.string().optional().describe("Upload transfer cap in bytes, e.g. '5G'"),
26829
- transfer_limit: z113.string().optional().describe("Total transfer cap, e.g. '10G'"),
26830
- uptime_limit: z113.string().optional().describe("Uptime cap, e.g. '1d'"),
26831
- reset_counters_interval: z113.string().optional().describe("Interval to auto-reset usage counters"),
26832
- reset_counters_start_time: z113.string().optional().describe("Start time for counter reset interval"),
26833
- comment: z113.string().optional()
27037
+ name: z114.string().describe("Limitation name"),
27038
+ rate_limit_rx: z114.string().optional().describe("Download rate limit, e.g. '10M'"),
27039
+ rate_limit_tx: z114.string().optional().describe("Upload rate limit, e.g. '10M'"),
27040
+ rate_limit_min_rx: z114.string().optional().describe("Guaranteed (CIR) download rate, e.g. '2M'"),
27041
+ rate_limit_min_tx: z114.string().optional().describe("Guaranteed (CIR) upload rate, e.g. '2M'"),
27042
+ rate_limit_burst_rx: z114.string().optional().describe("Download burst rate, e.g. '20M'"),
27043
+ rate_limit_burst_tx: z114.string().optional().describe("Upload burst rate, e.g. '20M'"),
27044
+ rate_limit_burst_threshold_rx: z114.string().optional().describe("Download burst threshold rate"),
27045
+ rate_limit_burst_threshold_tx: z114.string().optional().describe("Upload burst threshold rate"),
27046
+ rate_limit_burst_time_rx: z114.string().optional().describe("Download burst time, e.g. '10s'"),
27047
+ rate_limit_burst_time_tx: z114.string().optional().describe("Upload burst time, e.g. '10s'"),
27048
+ rate_limit_priority: z114.number().int().optional().describe("Queue priority (1-8)"),
27049
+ download_limit: z114.string().optional().describe("Download transfer cap in bytes, e.g. '5G'"),
27050
+ upload_limit: z114.string().optional().describe("Upload transfer cap in bytes, e.g. '5G'"),
27051
+ transfer_limit: z114.string().optional().describe("Total transfer cap, e.g. '10G'"),
27052
+ uptime_limit: z114.string().optional().describe("Uptime cap, e.g. '1d'"),
27053
+ reset_counters_interval: z114.string().optional().describe("Interval to auto-reset usage counters"),
27054
+ reset_counters_start_time: z114.string().optional().describe("Start time for counter reset interval"),
27055
+ comment: z114.string().optional()
26834
27056
  },
26835
27057
  async handler(a, ctx) {
26836
27058
  ctx.info(`Adding User Manager limitation: name=${a.name}`);
@@ -26852,7 +27074,7 @@ ${details}` : "User Manager limitation creation completed but unable to verify."
26852
27074
  annotations: READ,
26853
27075
  description: "Returns all User Manager limitation templates (`/user-manager limitation print`) \u2014 the named" + " rate/quota constraint definitions (rate-limit-rx/tx, transfer-limit, uptime-limit) that can" + " be attached to service profiles. Optionally filter by partial `name_filter`. Limitations are" + " distinct from profile plan templates; for those use list_user_manager_profiles.",
26854
27076
  inputSchema: {
26855
- name_filter: z113.string().optional().describe("Partial name match")
27077
+ name_filter: z114.string().optional().describe("Partial name match")
26856
27078
  },
26857
27079
  async handler(a, ctx) {
26858
27080
  ctx.info("Listing User Manager limitations");
@@ -26872,7 +27094,7 @@ ${result}`;
26872
27094
  title: "Remove User Manager Limitation Template",
26873
27095
  annotations: DESTRUCTIVE,
26874
27096
  description: "Permanently deletes a User Manager limitation template" + " (`/user-manager limitation remove [find name=...]`) \u2014 verifies existence via count-only" + " check first, then removes the constraint definition. Does NOT check whether the limitation" + " is still referenced by any profiles; verify with list_user_manager_profiles before removing" + " to avoid orphaned references. For listing limitations use list_user_manager_limitations.",
26875
- inputSchema: { name: z113.string() },
27097
+ inputSchema: { name: z114.string() },
26876
27098
  async handler(a, ctx) {
26877
27099
  ctx.info(`Removing User Manager limitation: name=${a.name}`);
26878
27100
  const count = await executeMikrotikCommand(`/user-manager limitation print count-only where name="${a.name}"`, ctx);
@@ -26892,8 +27114,8 @@ ${result}`;
26892
27114
  annotations: READ,
26893
27115
  description: "Returns User Manager RADIUS accounting session records (`/user-manager session print`) \u2014 the" + " log of authentication and accounting events for users connecting through registered RADIUS" + " clients. Optionally filter by partial `user_filter` or restrict to currently active sessions" + " with `active_only=true`. Returns session data including bytes transferred, uptime, and" + " status. For the user accounts themselves use list_user_manager_users; for registered RADIUS" + " clients use list_user_manager_routers.",
26894
27116
  inputSchema: {
26895
- user_filter: z113.string().optional().describe("Partial user match"),
26896
- active_only: z113.boolean().default(false).describe("Only show currently active sessions")
27117
+ user_filter: z114.string().optional().describe("Partial user match"),
27118
+ active_only: z114.boolean().default(false).describe("Only show currently active sessions")
26897
27119
  },
26898
27120
  async handler(a, ctx) {
26899
27121
  ctx.info("Listing User Manager sessions");
@@ -26913,7 +27135,7 @@ ${result}`;
26913
27135
  ];
26914
27136
 
26915
27137
  // src/tools/users.ts
26916
- import { z as z114 } from "zod";
27138
+ import { z as z115 } from "zod";
26917
27139
  var VALID_POLICIES = [
26918
27140
  "local",
26919
27141
  "telnet",
@@ -26970,12 +27192,12 @@ var userTools = [
26970
27192
  annotations: WRITE,
26971
27193
  description: "Create a local user account (`/user add`) \u2014 grants interactive access to the router via SSH, Winbox, web, telnet, or API. " + "The `group` parameter (default: `read`) sets permissions; built-in groups are `read`, `write`, `full`; use `add_user_group` to create custom groups. " + "Use `address` to restrict login to a specific IP/subnet. For PPP/dial-in credentials use `create_ppp_secret` instead. " + "Returns the created account's full detail including its `.id`.",
26972
27194
  inputSchema: {
26973
- name: z114.string(),
26974
- password: z114.string(),
26975
- group: z114.string().default("read"),
26976
- address: z114.string().optional(),
26977
- comment: z114.string().optional(),
26978
- disabled: z114.boolean().default(false)
27195
+ name: z115.string(),
27196
+ password: z115.string(),
27197
+ group: z115.string().default("read"),
27198
+ address: z115.string().optional(),
27199
+ comment: z115.string().optional(),
27200
+ disabled: z115.boolean().default(false)
26979
27201
  },
26980
27202
  async handler(a, ctx) {
26981
27203
  ctx.info(`Adding user: name=${a.name}, group=${a.group}`);
@@ -27007,10 +27229,10 @@ ${redactSecrets(details)}`;
27007
27229
  annotations: READ,
27008
27230
  description: "List local router user accounts (`/user print`) \u2014 shows each account's group, address restriction, and enabled/disabled state. " + "Supports optional filters: `name_filter` (name substring match), `group_filter` (exact group name), `disabled_only`. " + "Note: `active_only` is accepted by the schema but is not applied as a filter \u2014 it has no effect on the output. " + "Passwords are redacted from output. For currently logged-in sessions use `get_active_users`. For PPP dial-in secrets use `create_ppp_secret`.",
27009
27231
  inputSchema: {
27010
- name_filter: z114.string().optional(),
27011
- group_filter: z114.string().optional(),
27012
- disabled_only: z114.boolean().default(false),
27013
- active_only: z114.boolean().default(false)
27232
+ name_filter: z115.string().optional(),
27233
+ group_filter: z115.string().optional(),
27234
+ disabled_only: z115.boolean().default(false),
27235
+ active_only: z115.boolean().default(false)
27014
27236
  },
27015
27237
  async handler(a, ctx) {
27016
27238
  ctx.info(`Listing users with filters: name=${a.name_filter}, group=${a.group_filter}`);
@@ -27034,7 +27256,7 @@ ${redactSecrets(result)}`;
27034
27256
  title: "Get Local User Account Details",
27035
27257
  annotations: READ,
27036
27258
  description: "Fetch full detail for a single local user account (`/user print detail where name=...`). " + "Identified by login `name`. Passwords are redacted from output. " + "For all accounts use `list_users`; for currently active sessions use `get_active_users`.",
27037
- inputSchema: { name: z114.string() },
27259
+ inputSchema: { name: z115.string() },
27038
27260
  async handler(a, ctx) {
27039
27261
  ctx.info(`Getting user details: name=${a.name}`);
27040
27262
  const result = await executeMikrotikCommand(`/user print detail where name="${a.name}"`, ctx);
@@ -27051,13 +27273,13 @@ ${redactSecrets(result)}`;
27051
27273
  annotations: WRITE_IDEMPOTENT,
27052
27274
  description: "Modify a local user account (`/user set [find name=...]`). " + "Can change login name (`new_name`), `password`, `group`, allowed source `address` (pass empty string to remove address restriction), `comment`, or `disabled` state. " + "For toggling enabled/disabled state only, prefer `enable_user` or `disable_user`. " + "Returns the updated user detail with passwords redacted.",
27053
27275
  inputSchema: {
27054
- name: z114.string(),
27055
- new_name: z114.string().optional(),
27056
- password: z114.string().optional(),
27057
- group: z114.string().optional(),
27058
- address: z114.string().optional(),
27059
- comment: z114.string().optional(),
27060
- disabled: z114.boolean().optional()
27276
+ name: z115.string(),
27277
+ new_name: z115.string().optional(),
27278
+ password: z115.string().optional(),
27279
+ group: z115.string().optional(),
27280
+ address: z115.string().optional(),
27281
+ comment: z115.string().optional(),
27282
+ disabled: z115.boolean().optional()
27061
27283
  },
27062
27284
  async handler(a, ctx) {
27063
27285
  return runUpdateUser(a, ctx);
@@ -27068,7 +27290,7 @@ ${redactSecrets(result)}`;
27068
27290
  title: "Remove Local User Account",
27069
27291
  annotations: DESTRUCTIVE,
27070
27292
  description: "Permanently delete a local user account (`/user remove [find name=...]`). " + "Refuses to remove the built-in `admin` account. Verifies the user exists before removing. " + "To temporarily block access without deleting use `disable_user`. To end a live session without deleting the account use `disconnect_user`.",
27071
- inputSchema: { name: z114.string() },
27293
+ inputSchema: { name: z115.string() },
27072
27294
  async handler(a, ctx) {
27073
27295
  ctx.info(`Removing user: name=${a.name}`);
27074
27296
  if (a.name.toLowerCase() === "admin")
@@ -27087,7 +27309,7 @@ ${redactSecrets(result)}`;
27087
27309
  title: "Disable Local User Account",
27088
27310
  annotations: WRITE_IDEMPOTENT,
27089
27311
  description: "Disable a local user account (`/user set [find name=...] disabled=yes`), preventing new logins without deleting the account. " + "To re-enable use `enable_user`. For a full attribute update use `update_user`. To permanently delete the account use `remove_user`.",
27090
- inputSchema: { name: z114.string() },
27312
+ inputSchema: { name: z115.string() },
27091
27313
  async handler(a, ctx) {
27092
27314
  return runUpdateUser({ name: a.name, disabled: true }, ctx);
27093
27315
  }
@@ -27097,7 +27319,7 @@ ${redactSecrets(result)}`;
27097
27319
  title: "Enable Local User Account",
27098
27320
  annotations: WRITE_IDEMPOTENT,
27099
27321
  description: "Re-enable a previously disabled local user account (`/user set [find name=...] disabled=no`). " + "To disable use `disable_user`. For a full attribute update use `update_user`.",
27100
- inputSchema: { name: z114.string() },
27322
+ inputSchema: { name: z115.string() },
27101
27323
  async handler(a, ctx) {
27102
27324
  return runUpdateUser({ name: a.name, disabled: false }, ctx);
27103
27325
  }
@@ -27108,10 +27330,10 @@ ${redactSecrets(result)}`;
27108
27330
  annotations: WRITE,
27109
27331
  description: "Create a custom user group (`/user group add`) that defines a named permission policy for router access. " + "`policy` is a list of permissions to grant from: local, telnet, ssh, ftp, reboot, read, write, policy, test, winbox, password, web, sniff, sensitive, api, romon, dude, tikapp, rest-api. " + "The built-in groups (`read`, `write`, `full`) already exist on the device; this tool does not guard against those names \u2014 attempting to create a group with a duplicate name will be rejected by the device. Assign users to the new group via `add_user` or `update_user`. " + "Returns the created group's full detail.",
27110
27332
  inputSchema: {
27111
- name: z114.string(),
27112
- policy: z114.array(z114.string()),
27113
- skin: z114.string().optional(),
27114
- comment: z114.string().optional()
27333
+ name: z115.string(),
27334
+ policy: z115.array(z115.string()),
27335
+ skin: z115.string().optional(),
27336
+ comment: z115.string().optional()
27115
27337
  },
27116
27338
  async handler(a, ctx) {
27117
27339
  ctx.info(`Adding user group: name=${a.name}`);
@@ -27148,8 +27370,8 @@ ${details}`;
27148
27370
  annotations: READ,
27149
27371
  description: "List all user groups (`/user group print`), including built-in groups (`read`, `write`, `full`) and custom ones, showing their policy sets. " + "Supports optional filters: `name_filter` (name substring), `policy_filter` (policy substring). " + "To see individual user accounts use `list_users`; to see which users belong to a specific group use `list_users` with `group_filter`.",
27150
27372
  inputSchema: {
27151
- name_filter: z114.string().optional(),
27152
- policy_filter: z114.string().optional()
27373
+ name_filter: z115.string().optional(),
27374
+ policy_filter: z115.string().optional()
27153
27375
  },
27154
27376
  async handler(a, ctx) {
27155
27377
  ctx.info(`Listing user groups with filters: name=${a.name_filter}`);
@@ -27171,7 +27393,7 @@ ${result}`;
27171
27393
  title: "Get User Group Details",
27172
27394
  annotations: READ,
27173
27395
  description: "Fetch full detail for a single user group (`/user group print detail where name=...`), showing its complete policy list and skin setting. " + "For all groups use `list_user_groups`. To see which users belong to this group use `list_users` with `group_filter`.",
27174
- inputSchema: { name: z114.string() },
27396
+ inputSchema: { name: z115.string() },
27175
27397
  async handler(a, ctx) {
27176
27398
  ctx.info(`Getting user group details: name=${a.name}`);
27177
27399
  const result = await executeMikrotikCommand(`/user group print detail where name="${a.name}"`, ctx);
@@ -27188,11 +27410,11 @@ ${result}`;
27188
27410
  annotations: WRITE_IDEMPOTENT,
27189
27411
  description: "Modify a custom user group (`/user group set [find name=...]`). " + "Can change group name (`new_name`), `policy` list, `skin`, or `comment`. " + "Refuses to modify built-in groups (`read`, `write`, `full`). " + "Valid policies: local, telnet, ssh, ftp, reboot, read, write, policy, test, winbox, password, web, sniff, sensitive, api, romon, dude, tikapp, rest-api. " + "Returns the updated group detail.",
27190
27412
  inputSchema: {
27191
- name: z114.string(),
27192
- new_name: z114.string().optional(),
27193
- policy: z114.array(z114.string()).optional(),
27194
- skin: z114.string().optional(),
27195
- comment: z114.string().optional()
27413
+ name: z115.string(),
27414
+ new_name: z115.string().optional(),
27415
+ policy: z115.array(z115.string()).optional(),
27416
+ skin: z115.string().optional(),
27417
+ comment: z115.string().optional()
27196
27418
  },
27197
27419
  async handler(a, ctx) {
27198
27420
  ctx.info(`Updating user group: name=${a.name}`);
@@ -27225,7 +27447,7 @@ ${details}`;
27225
27447
  title: "Remove User Group",
27226
27448
  annotations: DESTRUCTIVE,
27227
27449
  description: "Delete a custom user group (`/user group remove [find name=...]`). " + "Refuses to remove built-in groups (`read`, `write`, `full`). " + "Checks that no users are currently assigned to the group \u2014 reassign or remove those users first via `update_user` or `remove_user`. " + "To remove individual user accounts use `remove_user`.",
27228
- inputSchema: { name: z114.string() },
27450
+ inputSchema: { name: z115.string() },
27229
27451
  async handler(a, ctx) {
27230
27452
  ctx.info(`Removing user group: name=${a.name}`);
27231
27453
  if (BUILTIN_GROUPS.includes(a.name))
@@ -27263,7 +27485,7 @@ ${result}`;
27263
27485
  title: "Disconnect Active User Session",
27264
27486
  annotations: DESTRUCTIVE,
27265
27487
  description: "Forcibly terminate an active user session (`/user active remove <user_id>`). " + "`user_id` is the `.id` from `get_active_users`. " + "Does NOT delete the user account \u2014 to delete the account use `remove_user`. To prevent future logins without deleting use `disable_user`.",
27266
- inputSchema: { user_id: z114.string() },
27488
+ inputSchema: { user_id: z115.string() },
27267
27489
  async handler(a, ctx) {
27268
27490
  ctx.info(`Disconnecting user: user_id=${a.user_id}`);
27269
27491
  const result = await executeMikrotikCommand(`/user active remove ${a.user_id}`, ctx);
@@ -27277,7 +27499,7 @@ ${result}`;
27277
27499
  title: "Export User Configuration to File",
27278
27500
  annotations: READ,
27279
27501
  description: "Export the router's user accounts and user-group configuration as a RouterOS script (`/user export file=<filename>`). " + "The file is saved on the router's flash storage as `<filename>.rsc`. If `filename` is omitted, defaults to `user_config`. " + "The exported script can be used to restore user accounts on another device.",
27280
- inputSchema: { filename: z114.string().optional() },
27502
+ inputSchema: { filename: z115.string().optional() },
27281
27503
  async handler(a, ctx) {
27282
27504
  ctx.info("Exporting user configuration");
27283
27505
  const filename = a.filename || "user_config";
@@ -27293,8 +27515,8 @@ ${result}`;
27293
27515
  annotations: WRITE,
27294
27516
  description: "Import an SSH public key for a user (`/user ssh-keys import user=... public-key-file=...`), enabling key-based SSH authentication in addition to password login. " + "`key_file` must be the path to a public key file already present on the router's filesystem. " + "To list a user's existing keys use `list_user_ssh_keys`; to remove a key use `remove_user_ssh_key`.",
27295
27517
  inputSchema: {
27296
- username: z114.string(),
27297
- key_file: z114.string()
27518
+ username: z115.string(),
27519
+ key_file: z115.string()
27298
27520
  },
27299
27521
  async handler(a, ctx) {
27300
27522
  ctx.info(`Setting SSH keys for user: ${a.username}`);
@@ -27311,7 +27533,7 @@ ${result}`;
27311
27533
  title: "List User SSH Keys",
27312
27534
  annotations: READ,
27313
27535
  description: "List SSH public keys registered for a specific user (`/user ssh-keys print where user=...`). " + "Returns each key's `.id`, which is required by `remove_user_ssh_key`. To add a key use `set_user_ssh_keys`.",
27314
- inputSchema: { username: z114.string() },
27536
+ inputSchema: { username: z115.string() },
27315
27537
  async handler(a, ctx) {
27316
27538
  ctx.info(`Listing SSH keys for user: ${a.username}`);
27317
27539
  const result = await executeMikrotikCommand(`/user ssh-keys print where user="${a.username}"`, ctx);
@@ -27327,7 +27549,7 @@ ${result}`;
27327
27549
  title: "Remove User SSH Key",
27328
27550
  annotations: DESTRUCTIVE,
27329
27551
  description: "Delete a specific SSH public key (`/user ssh-keys remove <key_id>`). " + "`key_id` is the `.id` from `list_user_ssh_keys`. " + "Does NOT disable the user's password-based login \u2014 to block all logins use `disable_user`; to delete the account use `remove_user`.",
27330
- inputSchema: { key_id: z114.string() },
27552
+ inputSchema: { key_id: z115.string() },
27331
27553
  async handler(a, ctx) {
27332
27554
  ctx.info(`Removing SSH key: key_id=${a.key_id}`);
27333
27555
  const result = await executeMikrotikCommand(`/user ssh-keys remove ${a.key_id}`, ctx);
@@ -27339,7 +27561,7 @@ ${result}`;
27339
27561
  ];
27340
27562
 
27341
27563
  // src/tools/vlan-designer.ts
27342
- import { z as z115 } from "zod";
27564
+ import { z as z116 } from "zod";
27343
27565
  function defaultRange2(subnet) {
27344
27566
  const o = subnet.split("/")[0].split(".");
27345
27567
  return `${o[0]}.${o[1]}.${o[2]}.10-${o[0]}.${o[1]}.${o[2]}.254`;
@@ -27351,18 +27573,18 @@ var vlanDesignerTools = [
27351
27573
  annotations: DANGEROUS,
27352
27574
  description: "Stands up a complete isolated network segment in one call: a VLAN interface on the bridge, its " + "gateway IP, a DHCP server + pool + network, optional internet access (srcnat masquerade), and " + "inter-VLAN isolation firewall rules \u2014 e.g. 'a guest VLAN that reaches the internet but not the " + "LAN'. DEFAULTS TO A DRY RUN (`apply=false`) showing every command grouped; set `apply=true` to " + "build it. Bridge VLAN tagging is added when `tagged_ports`/`untagged_ports` are given (requires " + "bridge vlan-filtering). Isolation drops forward traffic from this subnet to each `isolate_from` " + "subnet. Returns the plan or a build report.",
27353
27575
  inputSchema: {
27354
- vlan_id: z115.number().int().min(1).max(4094),
27355
- name: z115.string().describe("Name for the VLAN interface, e.g. 'guest'"),
27356
- subnet: z115.string().describe("CIDR for the segment, e.g. '192.168.30.0/24'"),
27357
- gateway: z115.string().describe("Router's address in the segment, e.g. '192.168.30.1'"),
27358
- bridge: z115.string().default("bridge").describe("Bridge to put the VLAN on"),
27359
- tagged_ports: z115.string().optional().describe("Comma-separated trunk/tagged ports (+ the bridge)"),
27360
- untagged_ports: z115.string().optional().describe("Comma-separated access/untagged ports"),
27361
- dhcp: z115.boolean().default(true).describe("Create a DHCP server + pool for the segment"),
27362
- dhcp_range: z115.string().optional().describe("Pool range; defaults to .10\u2013.254 of the subnet"),
27363
- internet: z115.boolean().default(true).describe("Allow internet access via srcnat masquerade"),
27364
- isolate_from: z115.array(z115.string()).optional().describe("Subnets this segment must NOT reach, e.g. ['192.168.1.0/24']"),
27365
- apply: z115.boolean().default(false).describe("false = preview (default); true = build")
27576
+ vlan_id: z116.number().int().min(1).max(4094),
27577
+ name: z116.string().describe("Name for the VLAN interface, e.g. 'guest'"),
27578
+ subnet: z116.string().describe("CIDR for the segment, e.g. '192.168.30.0/24'"),
27579
+ gateway: z116.string().describe("Router's address in the segment, e.g. '192.168.30.1'"),
27580
+ bridge: z116.string().default("bridge").describe("Bridge to put the VLAN on"),
27581
+ tagged_ports: z116.string().optional().describe("Comma-separated trunk/tagged ports (+ the bridge)"),
27582
+ untagged_ports: z116.string().optional().describe("Comma-separated access/untagged ports"),
27583
+ dhcp: z116.boolean().default(true).describe("Create a DHCP server + pool for the segment"),
27584
+ dhcp_range: z116.string().optional().describe("Pool range; defaults to .10\u2013.254 of the subnet"),
27585
+ internet: z116.boolean().default(true).describe("Allow internet access via srcnat masquerade"),
27586
+ isolate_from: z116.array(z116.string()).optional().describe("Subnets this segment must NOT reach, e.g. ['192.168.1.0/24']"),
27587
+ apply: z116.boolean().default(false).describe("false = preview (default); true = build")
27366
27588
  },
27367
27589
  async handler(a, ctx) {
27368
27590
  const prefix = a.subnet.split("/")[1] ?? "24";
@@ -27435,9 +27657,9 @@ Review partial segment (the VLAN may exist without DHCP/firewall).`;
27435
27657
  ];
27436
27658
 
27437
27659
  // src/tools/vlan.ts
27438
- import { z as z116 } from "zod";
27439
- var ArpMode2 = z116.enum(["enabled", "disabled", "proxy-arp", "reply-only"]);
27440
- var LoopProtect = z116.enum(["default", "on", "off"]);
27660
+ import { z as z117 } from "zod";
27661
+ var ArpMode2 = z117.enum(["enabled", "disabled", "proxy-arp", "reply-only"]);
27662
+ var LoopProtect = z117.enum(["default", "on", "off"]);
27441
27663
  var vlanTools = [
27442
27664
  defineTool({
27443
27665
  name: "create_vlan_interface",
@@ -27445,18 +27667,18 @@ var vlanTools = [
27445
27667
  annotations: WRITE,
27446
27668
  description: "Creates an 802.1Q VLAN sub-interface (`/interface vlan`) on a specified parent physical or bridge interface." + " Use this to segment layer-2 traffic by VLAN ID (1\u20134094); set `use_service_tag=true` for 802.1ad QinQ double-tagging." + " For listing existing VLAN interfaces use `list_vlan_interfaces`; for editing an existing VLAN use `update_vlan_interface`." + " Returns the created interface's full detail including its name, which is the identifier accepted by `get_vlan_interface`, `update_vlan_interface`, and `remove_vlan_interface`." + " ARP mode accepts: enabled (default), disabled, proxy-arp, reply-only.",
27447
27669
  inputSchema: {
27448
- name: z116.string().describe("Name for the new VLAN interface, e.g. 'vlan100'"),
27449
- vlan_id: z116.number().int().min(1).max(4094).describe("802.1Q VLAN ID (1-4094)"),
27450
- interface: z116.string().describe("Parent interface, e.g. 'ether1' or 'bridge'"),
27451
- comment: z116.string().optional(),
27452
- disabled: z116.boolean().default(false),
27453
- mtu: z116.number().int().optional(),
27454
- use_service_tag: z116.boolean().default(false).describe("Use 802.1ad service tag (QinQ)"),
27670
+ name: z117.string().describe("Name for the new VLAN interface, e.g. 'vlan100'"),
27671
+ vlan_id: z117.number().int().min(1).max(4094).describe("802.1Q VLAN ID (1-4094)"),
27672
+ interface: z117.string().describe("Parent interface, e.g. 'ether1' or 'bridge'"),
27673
+ comment: z117.string().optional(),
27674
+ disabled: z117.boolean().default(false),
27675
+ mtu: z117.number().int().optional(),
27676
+ use_service_tag: z117.boolean().default(false).describe("Use 802.1ad service tag (QinQ)"),
27455
27677
  arp: ArpMode2.default("enabled"),
27456
- arp_timeout: z116.string().optional(),
27678
+ arp_timeout: z117.string().optional(),
27457
27679
  loop_protect: LoopProtect.optional().describe("Loop protection: default, on, off"),
27458
- loop_protect_disable_time: z116.string().optional().describe("Time to disable interface on loop detection, e.g. '5m' (0 = forever)"),
27459
- loop_protect_send_interval: z116.string().optional().describe("Interval between loop-protect probe packets, e.g. '5s'")
27680
+ loop_protect_disable_time: z117.string().optional().describe("Time to disable interface on loop detection, e.g. '5m' (0 = forever)"),
27681
+ loop_protect_send_interval: z117.string().optional().describe("Interval between loop-protect probe packets, e.g. '5s'")
27460
27682
  },
27461
27683
  async handler(a, ctx) {
27462
27684
  ctx.info(`Creating VLAN interface: name=${a.name}, vlan_id=${a.vlan_id}, interface=${a.interface}`);
@@ -27476,10 +27698,10 @@ ${details}` : "VLAN interface creation completed but unable to verify.";
27476
27698
  annotations: READ,
27477
27699
  description: "Lists all 802.1Q VLAN sub-interfaces (`/interface vlan print`) with optional filters by name substring, VLAN ID, parent interface, or disabled state." + " Use to discover existing VLANs and obtain interface names for `get_vlan_interface`, `update_vlan_interface`, or `remove_vlan_interface`." + " For a single interface's full property detail use `get_vlan_interface`." + " Returns a table of matching VLAN interfaces, or a not-found message when no entries match the filters.",
27478
27700
  inputSchema: {
27479
- name_filter: z116.string().optional().describe("Partial name match"),
27480
- vlan_id_filter: z116.number().int().optional(),
27481
- interface_filter: z116.string().optional().describe("Exact parent interface name"),
27482
- disabled_only: z116.boolean().default(false)
27701
+ name_filter: z117.string().optional().describe("Partial name match"),
27702
+ vlan_id_filter: z117.number().int().optional(),
27703
+ interface_filter: z117.string().optional().describe("Exact parent interface name"),
27704
+ disabled_only: z117.boolean().default(false)
27483
27705
  },
27484
27706
  async handler(a, ctx) {
27485
27707
  ctx.info("Listing VLAN interfaces");
@@ -27503,7 +27725,7 @@ ${result}`;
27503
27725
  title: "Get VLAN Interface Details",
27504
27726
  annotations: READ,
27505
27727
  description: 'Returns full detail for a single named VLAN interface (`/interface vlan print detail where name="..."`), including VLAN ID, parent interface, ARP mode, MTU, and running state.' + " Use when you already know the exact interface name and need all properties." + " For searching across all VLANs or filtering by parent interface or VLAN ID use `list_vlan_interfaces`.",
27506
- inputSchema: { name: z116.string() },
27728
+ inputSchema: { name: z117.string() },
27507
27729
  async handler(a, ctx) {
27508
27730
  ctx.info(`Getting VLAN interface details: name=${a.name}`);
27509
27731
  const result = await executeMikrotikCommand(`/interface vlan print detail where name="${a.name}"`, ctx);
@@ -27518,19 +27740,19 @@ ${result}`;
27518
27740
  annotations: WRITE_IDEMPOTENT,
27519
27741
  description: 'Modifies properties of an existing VLAN sub-interface (`/interface vlan set [find name="..."]`).' + " Accepts any subset of the create parameters; omit fields to leave them unchanged." + " Supply the current `name` from `list_vlan_interfaces` or `get_vlan_interface`; use `new_name` to rename the interface." + " For creating a new VLAN interface use `create_vlan_interface`; to permanently delete use `remove_vlan_interface`." + " Returns the updated interface's full detail after applying the change." + " ARP mode accepts: enabled, disabled, proxy-arp, reply-only.",
27520
27742
  inputSchema: {
27521
- name: z116.string().describe("Current name of the VLAN interface to update"),
27522
- new_name: z116.string().optional(),
27523
- vlan_id: z116.number().int().min(1).max(4094).optional(),
27524
- interface: z116.string().optional(),
27525
- comment: z116.string().optional(),
27526
- disabled: z116.boolean().optional(),
27527
- mtu: z116.number().int().optional(),
27528
- use_service_tag: z116.boolean().optional(),
27743
+ name: z117.string().describe("Current name of the VLAN interface to update"),
27744
+ new_name: z117.string().optional(),
27745
+ vlan_id: z117.number().int().min(1).max(4094).optional(),
27746
+ interface: z117.string().optional(),
27747
+ comment: z117.string().optional(),
27748
+ disabled: z117.boolean().optional(),
27749
+ mtu: z117.number().int().optional(),
27750
+ use_service_tag: z117.boolean().optional(),
27529
27751
  arp: ArpMode2.optional(),
27530
- arp_timeout: z116.string().optional(),
27752
+ arp_timeout: z117.string().optional(),
27531
27753
  loop_protect: LoopProtect.optional().describe("Loop protection: default, on, off"),
27532
- loop_protect_disable_time: z116.string().optional().describe("Time to disable interface on loop detection, e.g. '5m' (0 = forever)"),
27533
- loop_protect_send_interval: z116.string().optional().describe("Interval between loop-protect probe packets, e.g. '5s'")
27754
+ loop_protect_disable_time: z117.string().optional().describe("Time to disable interface on loop detection, e.g. '5m' (0 = forever)"),
27755
+ loop_protect_send_interval: z117.string().optional().describe("Interval between loop-protect probe packets, e.g. '5s'")
27534
27756
  },
27535
27757
  async handler(a, ctx) {
27536
27758
  ctx.info(`Updating VLAN interface: name=${a.name}`);
@@ -27552,7 +27774,7 @@ ${details}`;
27552
27774
  title: "Remove VLAN Interface",
27553
27775
  annotations: DESTRUCTIVE,
27554
27776
  description: 'Permanently deletes a VLAN sub-interface (`/interface vlan remove [find name="..."]`) after confirming it exists via a count-only check.' + " Supply the interface `name` from `list_vlan_interfaces` or `get_vlan_interface`." + " Removing a VLAN interface also removes IP addresses assigned to it; firewall rules and other configuration that reference it by name are not automatically deleted and will remain as orphaned, ineffective entries." + " To disable a VLAN temporarily without deleting it use `update_vlan_interface` with `disabled=true`.",
27555
- inputSchema: { name: z116.string() },
27777
+ inputSchema: { name: z117.string() },
27556
27778
  async handler(a, ctx) {
27557
27779
  ctx.info(`Removing VLAN interface: name=${a.name}`);
27558
27780
  const count = await executeMikrotikCommand(`/interface vlan print count-only where name="${a.name}"`, ctx);
@@ -27567,7 +27789,7 @@ ${details}`;
27567
27789
  ];
27568
27790
 
27569
27791
  // src/tools/wireguard-mesh.ts
27570
- import { z as z117 } from "zod";
27792
+ import { z as z118 } from "zod";
27571
27793
  function meshAddress(prefix, index) {
27572
27794
  const [net, len = "24"] = prefix.split("/");
27573
27795
  const octets = net.split(".");
@@ -27584,16 +27806,16 @@ var wireguardMeshTools = [
27584
27806
  annotations: DANGEROUS,
27585
27807
  description: "Stands up a WireGuard VPN across several configured devices in ONE call: ensures a WireGuard " + "interface on each, reads each device's public key, assigns every device a mesh address from " + "`address_prefix`, then wires the peers between routers \u2014 `topology=full-mesh` connects every " + "pair, `hub-spoke` connects the `hub` to each spoke \u2014 distributing public keys automatically. " + "Endpoints default to each device's configured host (override per device via `endpoints`); add " + "each site's LAN subnet via `allowed_lans` to route it through the tunnel. DEFAULTS TO A DRY RUN " + "(`apply=false`) that shows the full plan; set `apply=true` to build it. Operates across " + "MULTIPLE devices, so it is not affected by the single `device` selector. SSH devices only " + "(needs to read public keys). Returns the plan, or a per-device build report.",
27586
27808
  inputSchema: {
27587
- devices: z117.array(z117.string()).min(2).describe("Configured device names to include in the mesh (2+)"),
27588
- address_prefix: z117.string().default("10.20.0.0/24").describe("Mesh subnet; each device gets <prefix>.<index+1> on its WireGuard interface"),
27589
- interface: z117.string().default("wg-mesh").describe("WireGuard interface name to create/use"),
27590
- listen_port: z117.number().int().default(13231),
27591
- topology: z117.enum(["full-mesh", "hub-spoke"]).default("full-mesh"),
27592
- hub: z117.string().optional().describe("Hub device name (required when topology=hub-spoke)"),
27593
- endpoints: z117.record(z117.string(), z117.string()).optional().describe('Per-device public endpoint host override, e.g. {"site-a":"a.example.com"}'),
27594
- allowed_lans: z117.record(z117.string(), z117.string()).optional().describe('Per-device LAN subnet to route through the tunnel, e.g. {"site-a":"192.168.10.0/24"}'),
27595
- persistent_keepalive: z117.string().default("25s"),
27596
- apply: z117.boolean().default(false).describe("false = preview the plan (default); true = build")
27809
+ devices: z118.array(z118.string()).min(2).describe("Configured device names to include in the mesh (2+)"),
27810
+ address_prefix: z118.string().default("10.20.0.0/24").describe("Mesh subnet; each device gets <prefix>.<index+1> on its WireGuard interface"),
27811
+ interface: z118.string().default("wg-mesh").describe("WireGuard interface name to create/use"),
27812
+ listen_port: z118.number().int().default(13231),
27813
+ topology: z118.enum(["full-mesh", "hub-spoke"]).default("full-mesh"),
27814
+ hub: z118.string().optional().describe("Hub device name (required when topology=hub-spoke)"),
27815
+ endpoints: z118.record(z118.string(), z118.string()).optional().describe('Per-device public endpoint host override, e.g. {"site-a":"a.example.com"}'),
27816
+ allowed_lans: z118.record(z118.string(), z118.string()).optional().describe('Per-device LAN subnet to route through the tunnel, e.g. {"site-a":"192.168.10.0/24"}'),
27817
+ persistent_keepalive: z118.string().default("25s"),
27818
+ apply: z118.boolean().default(false).describe("false = preview the plan (default); true = build")
27597
27819
  },
27598
27820
  async handler(a, ctx) {
27599
27821
  const devices = a.devices;
@@ -27684,7 +27906,7 @@ Check handshakes per device with get_wireguard_peers / list_wireguard_peers.`;
27684
27906
 
27685
27907
  // src/tools/vpn-onboard.ts
27686
27908
  import { generateKeyPairSync } from "crypto";
27687
- import { z as z118 } from "zod";
27909
+ import { z as z119 } from "zod";
27688
27910
  function generateWireGuardKeypair() {
27689
27911
  const { privateKey, publicKey } = generateKeyPairSync("x25519");
27690
27912
  const priv = privateKey.export({ type: "pkcs8", format: "der" });
@@ -27701,13 +27923,13 @@ var vpnOnboardTools = [
27701
27923
  annotations: WRITE,
27702
27924
  description: "Generates a ready-to-use WireGuard remote-access profile for one user: creates a client " + "keypair, adds the peer to the server `interface` (allowed-address = the client's tunnel IP), " + "reads the server's public key, and returns a complete client .conf to paste into the WireGuard " + "app or a QR generator. The peer is tagged `vpn-user: <user>` so revoke_wireguard_user can remove " + "it. NOTE: the returned config contains the client PRIVATE key (required to connect) \u2014 handle it " + "securely. `endpoint` is the server's public host:port; `allowed_ips` controls split vs full " + "tunnel. SSH devices only. Returns the client config.",
27703
27925
  inputSchema: {
27704
- interface: z118.string().describe("Existing WireGuard SERVER interface, e.g. 'wg-server'"),
27705
- user: z118.string().describe("User/device label, e.g. 'alice-laptop'"),
27706
- address: z118.string().describe("Tunnel IP to assign the client, e.g. '10.20.0.50'"),
27707
- endpoint: z118.string().describe("Server public endpoint host:port, e.g. 'vpn.example.com:13231'"),
27708
- dns: z118.string().optional().describe("DNS for the client, e.g. '10.20.0.1'"),
27709
- allowed_ips: z118.string().default("0.0.0.0/0").describe("Client AllowedIPs: '0.0.0.0/0' full-tunnel, or a LAN subnet for split-tunnel"),
27710
- keepalive: z118.string().default("25").describe("PersistentKeepalive seconds")
27926
+ interface: z119.string().describe("Existing WireGuard SERVER interface, e.g. 'wg-server'"),
27927
+ user: z119.string().describe("User/device label, e.g. 'alice-laptop'"),
27928
+ address: z119.string().describe("Tunnel IP to assign the client, e.g. '10.20.0.50'"),
27929
+ endpoint: z119.string().describe("Server public endpoint host:port, e.g. 'vpn.example.com:13231'"),
27930
+ dns: z119.string().optional().describe("DNS for the client, e.g. '10.20.0.1'"),
27931
+ allowed_ips: z119.string().default("0.0.0.0/0").describe("Client AllowedIPs: '0.0.0.0/0' full-tunnel, or a LAN subnet for split-tunnel"),
27932
+ keepalive: z119.string().default("25").describe("PersistentKeepalive seconds")
27711
27933
  },
27712
27934
  async handler(a, ctx) {
27713
27935
  ctx.info(`Onboarding WireGuard user '${a.user}' on ${a.interface}`);
@@ -27745,7 +27967,7 @@ ${config}`;
27745
27967
  title: "Revoke WireGuard Remote User",
27746
27968
  annotations: DESTRUCTIVE,
27747
27969
  description: "Revokes a remote-access user created by onboard_wireguard_user: removes the WireGuard peer " + "tagged `vpn-user: <user>` from the server, immediately cutting their access. Returns whether a " + "peer was removed.",
27748
- inputSchema: { user: z118.string().describe("The user label used at onboarding") },
27970
+ inputSchema: { user: z119.string().describe("The user label used at onboarding") },
27749
27971
  async handler(a, ctx) {
27750
27972
  const count = await executeMikrotikCommand(`/interface wireguard peers print count-only where comment="vpn-user: ${a.user}"`, ctx);
27751
27973
  if (count.trim() === "0")
@@ -27759,7 +27981,7 @@ ${config}`;
27759
27981
  ];
27760
27982
 
27761
27983
  // src/tools/wireguard.ts
27762
- import { z as z119 } from "zod";
27984
+ import { z as z120 } from "zod";
27763
27985
  var wireguardTools = [
27764
27986
  defineTool({
27765
27987
  name: "create_wireguard_interface",
@@ -27767,12 +27989,12 @@ var wireguardTools = [
27767
27989
  annotations: WRITE,
27768
27990
  description: "Creates a WireGuard tunnel interface (`/interface wireguard`) \u2014 the local VPN endpoint" + " with a UDP listen port and private key. Use this to establish the server-side or site-to-site" + " WireGuard interface before adding remote peers with add_wireguard_peer." + " For IPsec tunnels use create_ipsec_peer; for L2TP use create_l2tp_client;" + " for OpenVPN use create_ovpn_client. Returns the created interface's detail including" + " its name and RouterOS-generated public key.",
27769
27991
  inputSchema: {
27770
- name: z119.string(),
27771
- listen_port: z119.number().int().optional(),
27772
- private_key: z119.string().optional(),
27773
- mtu: z119.number().int().optional(),
27774
- comment: z119.string().optional(),
27775
- disabled: z119.boolean().default(false)
27992
+ name: z120.string(),
27993
+ listen_port: z120.number().int().optional(),
27994
+ private_key: z120.string().optional(),
27995
+ mtu: z120.number().int().optional(),
27996
+ comment: z120.string().optional(),
27997
+ disabled: z120.boolean().default(false)
27776
27998
  },
27777
27999
  async handler(a, ctx) {
27778
28000
  ctx.info(`Creating WireGuard interface: name=${a.name}`);
@@ -27792,9 +28014,9 @@ ${details}` : "WireGuard interface created successfully.";
27792
28014
  annotations: READ,
27793
28015
  description: "`list_wireguard_interfaces` \u2014 READ / list / show / inspect all WireGuard tunnel interfaces" + " (`/interface wireguard print`). The go-to tool to read the current WireGuard state on a" + " device. Returns each interface's name, listen-port, public-key, MTU, and running/disabled" + " status. Filter by name substring (name_filter), disabled-only, or running-only." + " For one interface's full detail use get_wireguard_interface; for the peer table use" + " list_wireguard_peers; for interfaces AND peers in one call use get_wireguard_status.",
27794
28016
  inputSchema: {
27795
- name_filter: z119.string().optional(),
27796
- disabled_only: z119.boolean().default(false),
27797
- running_only: z119.boolean().default(false)
28017
+ name_filter: z120.string().optional(),
28018
+ disabled_only: z120.boolean().default(false),
28019
+ running_only: z120.boolean().default(false)
27798
28020
  },
27799
28021
  async handler(a, ctx) {
27800
28022
  ctx.info("Listing WireGuard interfaces");
@@ -27816,7 +28038,7 @@ ${result}`;
27816
28038
  title: "Get WireGuard Interface Details",
27817
28039
  annotations: READ,
27818
28040
  description: "`get_wireguard_interface` \u2014 READ / get / show the full detail of ONE WireGuard tunnel interface" + " (`/interface wireguard print detail`) looked up by name. Returns listen-port, private-key," + " public-key, MTU, running state, and comment. To list all interfaces use" + " list_wireguard_interfaces; for that interface's peers use list_wireguard_peers; for" + " interfaces AND peers in one call use get_wireguard_status.",
27819
- inputSchema: { name: z119.string() },
28041
+ inputSchema: { name: z120.string() },
27820
28042
  async handler(a, ctx) {
27821
28043
  ctx.info(`Getting WireGuard interface details: name=${a.name}`);
27822
28044
  const result = await executeMikrotikCommand(`/interface wireguard print detail where name="${a.name}"`, ctx);
@@ -27831,7 +28053,7 @@ ${result}`;
27831
28053
  annotations: READ,
27832
28054
  description: "`get_wireguard_status` \u2014 READ the current WireGuard state on a device in ONE call: ALL tunnel" + " interfaces AND ALL peers together. Use this FIRST to inspect / show / check WireGuard before" + " changing anything (e.g. to read public keys, see which side initiates, or confirm the tunnel" + " is up). Interfaces report name, listen-port, public-key, MTU and running state; peers report" + " .id, interface, public-key, allowed-address, endpoint/current-endpoint, last-handshake time" + " and rx/tx bytes. Combines list_wireguard_interfaces + list_wireguard_peers; optionally filter" + " both to one interface with interface_filter.",
27833
28055
  inputSchema: {
27834
- interface_filter: z119.string().optional().describe("Limit to one interface name, e.g. 'wg-mesh'")
28056
+ interface_filter: z120.string().optional().describe("Limit to one interface name, e.g. 'wg-mesh'")
27835
28057
  },
27836
28058
  async handler(a, ctx) {
27837
28059
  ctx.info("Reading WireGuard status (interfaces + peers)");
@@ -27856,13 +28078,13 @@ ${peerBlock}`;
27856
28078
  annotations: WRITE_IDEMPOTENT,
27857
28079
  description: "Modifies settings on an existing WireGuard tunnel interface (`/interface wireguard set [find name=]`)" + " \u2014 rename (new_name), change listen-port, rotate private-key, adjust MTU, or toggle disabled state." + " Only supplied fields are changed; omitted fields are left as-is." + " For updating remote peers use update_wireguard_peer." + " Returns the updated interface's detail.",
27858
28080
  inputSchema: {
27859
- name: z119.string(),
27860
- new_name: z119.string().optional(),
27861
- listen_port: z119.number().int().optional(),
27862
- private_key: z119.string().optional(),
27863
- mtu: z119.number().int().optional(),
27864
- comment: z119.string().optional(),
27865
- disabled: z119.boolean().optional()
28081
+ name: z120.string(),
28082
+ new_name: z120.string().optional(),
28083
+ listen_port: z120.number().int().optional(),
28084
+ private_key: z120.string().optional(),
28085
+ mtu: z120.number().int().optional(),
28086
+ comment: z120.string().optional(),
28087
+ disabled: z120.boolean().optional()
27866
28088
  },
27867
28089
  async handler(a, ctx) {
27868
28090
  ctx.info(`Updating WireGuard interface: name=${a.name}`);
@@ -27885,7 +28107,7 @@ ${details}`;
27885
28107
  title: "Remove WireGuard Interface",
27886
28108
  annotations: DESTRUCTIVE,
27887
28109
  description: "Permanently deletes a WireGuard tunnel interface (`/interface wireguard remove`) by name." + " Verifies existence first with count-only; removing the interface also removes all its associated peers." + " For removing only a specific peer without touching the interface use remove_wireguard_peer.",
27888
- inputSchema: { name: z119.string() },
28110
+ inputSchema: { name: z120.string() },
27889
28111
  async handler(a, ctx) {
27890
28112
  ctx.info(`Removing WireGuard interface: name=${a.name}`);
27891
28113
  const count = await executeMikrotikCommand(`/interface wireguard print count-only where name="${a.name}"`, ctx);
@@ -27902,7 +28124,7 @@ ${details}`;
27902
28124
  title: "Enable WireGuard Interface",
27903
28125
  annotations: WRITE_IDEMPOTENT,
27904
28126
  description: "Enables a disabled WireGuard tunnel interface (`/interface wireguard enable`) by name," + " allowing it to accept and establish tunnel connections." + " For enabling a specific peer without affecting the interface use enable_wireguard_peer." + " To undo, use disable_wireguard_interface.",
27905
- inputSchema: { name: z119.string() },
28127
+ inputSchema: { name: z120.string() },
27906
28128
  async handler(a, ctx) {
27907
28129
  ctx.info(`Enabling WireGuard interface: name=${a.name}`);
27908
28130
  const result = await executeMikrotikCommand(`/interface wireguard enable [find name="${a.name}"]`, ctx);
@@ -27916,7 +28138,7 @@ ${details}`;
27916
28138
  title: "Disable WireGuard Interface",
27917
28139
  annotations: WRITE_IDEMPOTENT,
27918
28140
  description: "Disables a WireGuard tunnel interface (`/interface wireguard disable`) by name," + " stopping all tunnel traffic through it without removing the interface or its peers." + " For disabling only a specific peer use disable_wireguard_peer." + " To re-enable use enable_wireguard_interface.",
27919
- inputSchema: { name: z119.string() },
28141
+ inputSchema: { name: z120.string() },
27920
28142
  async handler(a, ctx) {
27921
28143
  ctx.info(`Disabling WireGuard interface: name=${a.name}`);
27922
28144
  const result = await executeMikrotikCommand(`/interface wireguard disable [find name="${a.name}"]`, ctx);
@@ -27936,23 +28158,23 @@ ${details}`;
27936
28158
  ` + ` endpoint_address: remote host IP or hostname e.g. "203.0.113.1" (omit for road-warrior clients that dial in)
27937
28159
  ` + ' persistent_keepalive: seconds as string e.g. "25"',
27938
28160
  inputSchema: {
27939
- interface: z119.string(),
27940
- public_key: z119.string(),
27941
- allowed_address: z119.string().describe('CIDR, comma-separated for multiple e.g. "10.0.0.2/32" or "10.0.0.0/24,192.168.0.0/24"'),
27942
- endpoint_address: z119.string().optional().describe('remote host IP or hostname e.g. "203.0.113.1"'),
27943
- endpoint_port: z119.number().int().optional(),
27944
- preshared_key: z119.string().optional(),
27945
- persistent_keepalive: z119.string().optional().describe('seconds as string e.g. "25"'),
27946
- name: z119.string().optional().describe("optional peer name label"),
27947
- private_key: z119.string().optional().describe("peer's private key (lets the router generate this peer's client config)"),
27948
- responder: z119.boolean().optional().describe("only respond to handshakes, never initiate (for road-warrior clients)"),
27949
- client_address: z119.string().optional().describe("client tunnel address(es) for the generated client config"),
27950
- client_dns: z119.string().optional().describe("DNS server(s) written into the generated client config"),
27951
- client_endpoint: z119.string().optional().describe("server endpoint host[:port] written into the generated client config"),
27952
- client_keepalive: z119.string().optional().describe('client persistent-keepalive for the generated config e.g. "25s"'),
27953
- client_listen_port: z119.number().int().optional().describe("listen-port written into the generated client config"),
27954
- comment: z119.string().optional(),
27955
- disabled: z119.boolean().default(false)
28161
+ interface: z120.string(),
28162
+ public_key: z120.string(),
28163
+ allowed_address: z120.string().describe('CIDR, comma-separated for multiple e.g. "10.0.0.2/32" or "10.0.0.0/24,192.168.0.0/24"'),
28164
+ endpoint_address: z120.string().optional().describe('remote host IP or hostname e.g. "203.0.113.1"'),
28165
+ endpoint_port: z120.number().int().optional(),
28166
+ preshared_key: z120.string().optional(),
28167
+ persistent_keepalive: z120.string().optional().describe('seconds as string e.g. "25"'),
28168
+ name: z120.string().optional().describe("optional peer name label"),
28169
+ private_key: z120.string().optional().describe("peer's private key (lets the router generate this peer's client config)"),
28170
+ responder: z120.boolean().optional().describe("only respond to handshakes, never initiate (for road-warrior clients)"),
28171
+ client_address: z120.string().optional().describe("client tunnel address(es) for the generated client config"),
28172
+ client_dns: z120.string().optional().describe("DNS server(s) written into the generated client config"),
28173
+ client_endpoint: z120.string().optional().describe("server endpoint host[:port] written into the generated client config"),
28174
+ client_keepalive: z120.string().optional().describe('client persistent-keepalive for the generated config e.g. "25s"'),
28175
+ client_listen_port: z120.number().int().optional().describe("listen-port written into the generated client config"),
28176
+ comment: z120.string().optional(),
28177
+ disabled: z120.boolean().default(false)
27956
28178
  },
27957
28179
  async handler(a, ctx) {
27958
28180
  ctx.info(`Adding WireGuard peer: interface=${a.interface}, public_key=${a.public_key.slice(0, 12)}...`);
@@ -27972,8 +28194,8 @@ ${details}` : "WireGuard peer added successfully.";
27972
28194
  annotations: READ,
27973
28195
  description: "`list_wireguard_peers` \u2014 READ / list / show / inspect all WireGuard peers" + " (`/interface wireguard peers print`). Use this to read which peers are configured and" + " whether the tunnel is up (handshake). Returns each peer's .id, interface, public-key," + " allowed-address, endpoint/current-endpoint, last-handshake time, and rx/tx byte counters." + " Filter by interface name (interface_filter) or disabled-only. For the interface table use" + " list_wireguard_interfaces; for one peer's full detail use get_wireguard_peer; for interfaces" + " AND peers in one call use get_wireguard_status. Use the .id from this output with" + " update_wireguard_peer, remove_wireguard_peer, enable_wireguard_peer, or disable_wireguard_peer.",
27974
28196
  inputSchema: {
27975
- interface_filter: z119.string().optional(),
27976
- disabled_only: z119.boolean().default(false)
28197
+ interface_filter: z120.string().optional(),
28198
+ disabled_only: z120.boolean().default(false)
27977
28199
  },
27978
28200
  async handler(a, ctx) {
27979
28201
  ctx.info("Listing WireGuard peers");
@@ -27997,7 +28219,7 @@ ${result}`;
27997
28219
  ` + `Notes:
27998
28220
  ` + ' peer_id: the .id from list_wireguard_peers, format "*N" or "N" e.g. "*2"',
27999
28221
  inputSchema: {
28000
- peer_id: z119.string().describe('"*N" or "N" from list output e.g. "*2"')
28222
+ peer_id: z120.string().describe('"*N" or "N" from list output e.g. "*2"')
28001
28223
  },
28002
28224
  async handler(a, ctx) {
28003
28225
  ctx.info(`Getting WireGuard peer details: peer_id=${a.peer_id}`);
@@ -28019,22 +28241,22 @@ ${result}`;
28019
28241
  ` + ` persistent_keepalive: seconds as string e.g. "25"
28020
28242
  ` + ' Pass "" for endpoint_address or preshared_key to clear them.',
28021
28243
  inputSchema: {
28022
- peer_id: z119.string().describe('"*N" or "N" from list output e.g. "*2"'),
28023
- allowed_address: z119.string().optional(),
28024
- endpoint_address: z119.string().optional(),
28025
- endpoint_port: z119.number().int().optional(),
28026
- preshared_key: z119.string().optional(),
28027
- persistent_keepalive: z119.string().optional(),
28028
- name: z119.string().optional().describe("optional peer name label"),
28029
- private_key: z119.string().optional().describe("peer's private key (lets the router generate this peer's client config)"),
28030
- responder: z119.boolean().optional().describe("only respond to handshakes, never initiate"),
28031
- client_address: z119.string().optional().describe("client tunnel address(es) for the generated client config"),
28032
- client_dns: z119.string().optional().describe("DNS server(s) written into the generated client config"),
28033
- client_endpoint: z119.string().optional().describe("server endpoint host[:port] written into the generated client config"),
28034
- client_keepalive: z119.string().optional().describe('client persistent-keepalive for the generated config e.g. "25s"'),
28035
- client_listen_port: z119.number().int().optional().describe("listen-port written into the generated client config"),
28036
- comment: z119.string().optional(),
28037
- disabled: z119.boolean().optional()
28244
+ peer_id: z120.string().describe('"*N" or "N" from list output e.g. "*2"'),
28245
+ allowed_address: z120.string().optional(),
28246
+ endpoint_address: z120.string().optional(),
28247
+ endpoint_port: z120.number().int().optional(),
28248
+ preshared_key: z120.string().optional(),
28249
+ persistent_keepalive: z120.string().optional(),
28250
+ name: z120.string().optional().describe("optional peer name label"),
28251
+ private_key: z120.string().optional().describe("peer's private key (lets the router generate this peer's client config)"),
28252
+ responder: z120.boolean().optional().describe("only respond to handshakes, never initiate"),
28253
+ client_address: z120.string().optional().describe("client tunnel address(es) for the generated client config"),
28254
+ client_dns: z120.string().optional().describe("DNS server(s) written into the generated client config"),
28255
+ client_endpoint: z120.string().optional().describe("server endpoint host[:port] written into the generated client config"),
28256
+ client_keepalive: z120.string().optional().describe('client persistent-keepalive for the generated config e.g. "25s"'),
28257
+ client_listen_port: z120.number().int().optional().describe("listen-port written into the generated client config"),
28258
+ comment: z120.string().optional(),
28259
+ disabled: z120.boolean().optional()
28038
28260
  },
28039
28261
  async handler(a, ctx) {
28040
28262
  ctx.info(`Updating WireGuard peer: peer_id=${a.peer_id}`);
@@ -28060,7 +28282,7 @@ ${details}`;
28060
28282
  ` + `Notes:
28061
28283
  ` + ' peer_id: the .id from list_wireguard_peers, format "*N" or "N" e.g. "*2"',
28062
28284
  inputSchema: {
28063
- peer_id: z119.string().describe('"*N" or "N" from list output e.g. "*2"')
28285
+ peer_id: z120.string().describe('"*N" or "N" from list output e.g. "*2"')
28064
28286
  },
28065
28287
  async handler(a, ctx) {
28066
28288
  ctx.info(`Removing WireGuard peer: peer_id=${a.peer_id}`);
@@ -28082,7 +28304,7 @@ ${details}`;
28082
28304
  ` + `Notes:
28083
28305
  ` + ' peer_id: the .id from list_wireguard_peers, format "*N" or "N" e.g. "*2"',
28084
28306
  inputSchema: {
28085
- peer_id: z119.string().describe('"*N" or "N" from list output e.g. "*2"')
28307
+ peer_id: z120.string().describe('"*N" or "N" from list output e.g. "*2"')
28086
28308
  },
28087
28309
  async handler(a, ctx) {
28088
28310
  ctx.info(`Enabling WireGuard peer: peer_id=${a.peer_id}`);
@@ -28101,7 +28323,7 @@ ${details}`;
28101
28323
  ` + `Notes:
28102
28324
  ` + ' peer_id: the .id from list_wireguard_peers, format "*N" or "N" e.g. "*2"',
28103
28325
  inputSchema: {
28104
- peer_id: z119.string().describe('"*N" or "N" from list output e.g. "*2"')
28326
+ peer_id: z120.string().describe('"*N" or "N" from list output e.g. "*2"')
28105
28327
  },
28106
28328
  async handler(a, ctx) {
28107
28329
  ctx.info(`Disabling WireGuard peer: peer_id=${a.peer_id}`);
@@ -28121,14 +28343,14 @@ ${details}`;
28121
28343
  ` + ` allowed_ips: CIDRs routed through the tunnel by the client, default "0.0.0.0/0" (all IPv4 traffic; add ::/0 to also route IPv6)
28122
28344
  ` + " persistent_keepalive: seconds integer, default 25",
28123
28345
  inputSchema: {
28124
- client_private_key: z119.string(),
28125
- client_address: z119.string(),
28126
- server_public_key: z119.string(),
28127
- server_endpoint: z119.string(),
28128
- server_port: z119.number().int().default(51820),
28129
- allowed_ips: z119.string().default("0.0.0.0/0"),
28130
- dns: z119.string().optional(),
28131
- persistent_keepalive: z119.number().int().default(25)
28346
+ client_private_key: z120.string(),
28347
+ client_address: z120.string(),
28348
+ server_public_key: z120.string(),
28349
+ server_endpoint: z120.string(),
28350
+ server_port: z120.number().int().default(51820),
28351
+ allowed_ips: z120.string().default("0.0.0.0/0"),
28352
+ dns: z120.string().optional(),
28353
+ persistent_keepalive: z120.number().int().default(25)
28132
28354
  },
28133
28355
  async handler(a, ctx) {
28134
28356
  ctx.info("Generating WireGuard client configuration");
@@ -28162,7 +28384,7 @@ ${details}`;
28162
28384
  ];
28163
28385
 
28164
28386
  // src/tools/wireless.ts
28165
- import { z as z120 } from "zod";
28387
+ import { z as z121 } from "zod";
28166
28388
  var V7_WIFI = ["/interface wifi", "/interface wifiwave2"];
28167
28389
  function commandUnsupported2(result) {
28168
28390
  const t = result.toLowerCase();
@@ -28193,12 +28415,12 @@ var wirelessTools = [
28193
28415
  annotations: WRITE,
28194
28416
  description: "Creates a wireless interface (`/interface wifi`, `/interface wifiwave2`, `/interface wireless`, or `/interface wlan` \u2014 auto-detected per device). " + "Use to add a new AP or station interface to the device. " + "On RouterOS v7 accepts name, ssid, disabled, and comment; on v6/legacy also requires radio_name (e.g. `wlan1`) and optionally accepts mode (default `ap-bridge`), frequency, band, channel_width, and security_profile. " + "To modify an existing interface use update_wireless_interface; to see current interfaces use list_wireless_interfaces. " + "Returns the created interface's full detail print including its `.id`.",
28195
28417
  inputSchema: {
28196
- name: z120.string(),
28197
- ssid: z120.string().optional(),
28198
- disabled: z120.boolean().default(false),
28199
- comment: z120.string().optional(),
28200
- radio_name: z120.string().optional().describe("Required for legacy wireless systems, e.g. 'wlan1'"),
28201
- mode: z120.enum([
28418
+ name: z121.string(),
28419
+ ssid: z121.string().optional(),
28420
+ disabled: z121.boolean().default(false),
28421
+ comment: z121.string().optional(),
28422
+ radio_name: z121.string().optional().describe("Required for legacy wireless systems, e.g. 'wlan1'"),
28423
+ mode: z121.enum([
28202
28424
  "ap-bridge",
28203
28425
  "bridge",
28204
28426
  "station",
@@ -28208,8 +28430,8 @@ var wirelessTools = [
28208
28430
  "ap-bridge-wds",
28209
28431
  "alignment-only"
28210
28432
  ]).optional(),
28211
- frequency: z120.string().optional(),
28212
- band: z120.enum([
28433
+ frequency: z121.string().optional(),
28434
+ band: z121.enum([
28213
28435
  "2ghz-b",
28214
28436
  "2ghz-b/g",
28215
28437
  "2ghz-b/g/n",
@@ -28221,24 +28443,24 @@ var wirelessTools = [
28221
28443
  "5ghz-n",
28222
28444
  "5ghz-ac"
28223
28445
  ]).optional(),
28224
- channel_width: z120.enum(["20mhz", "40mhz", "80mhz", "160mhz", "20/40mhz-eC", "20/40mhz-Ce"]).optional(),
28225
- security_profile: z120.string().optional(),
28226
- mtu: z120.number().int().optional().describe("Interface MTU in bytes"),
28227
- arp: z120.enum(["disabled", "enabled", "proxy-arp", "reply-only", "local-proxy-arp"]).optional().describe("ARP mode for the interface"),
28228
- hide_ssid: z120.boolean().optional().describe("Legacy: do not broadcast the SSID in beacons (AP modes)"),
28229
- wireless_protocol: z120.string().optional().describe("Legacy: wireless protocol, e.g. '802.11', 'nv2', 'nstreme'"),
28230
- scan_list: z120.string().optional().describe("Legacy: frequencies/ranges to scan (e.g. 'default' or '5180-5320')"),
28231
- frequency_mode: z120.enum(["manual-txpower", "regulatory-domain", "superchannel"]).optional().describe("Legacy: regulatory frequency mode"),
28232
- country: z120.string().optional().describe("Legacy: regulatory country setting (e.g. 'united states')"),
28233
- antenna_gain: z120.number().int().optional().describe("Legacy: antenna gain in dBi used for tx-power calculations"),
28234
- wds_mode: z120.enum(["disabled", "dynamic", "dynamic-mesh", "static", "static-mesh"]).optional().describe("Legacy: WDS mode"),
28235
- wds_default_bridge: z120.string().optional().describe("Legacy: bridge that dynamic WDS interfaces are added to"),
28236
- default_authentication: z120.boolean().optional().describe("Legacy: allow clients not in the access-list to authenticate"),
28237
- default_forwarding: z120.boolean().optional().describe("Legacy: allow client-to-client forwarding by default"),
28238
- tx_power: z120.number().int().optional().describe("Legacy: manual transmit power in dBm"),
28239
- tx_power_mode: z120.enum(["default", "card-rates", "all-rates-fixed", "manual-table"]).optional().describe("Legacy: how tx-power is determined"),
28240
- distance: z120.string().optional().describe("Legacy: link distance ('dynamic', 'indoors', or a km value)"),
28241
- disconnect_timeout: z120.string().optional().describe("Legacy: time before a non-responding client is disconnected")
28446
+ channel_width: z121.enum(["20mhz", "40mhz", "80mhz", "160mhz", "20/40mhz-eC", "20/40mhz-Ce"]).optional(),
28447
+ security_profile: z121.string().optional(),
28448
+ mtu: z121.number().int().optional().describe("Interface MTU in bytes"),
28449
+ arp: z121.enum(["disabled", "enabled", "proxy-arp", "reply-only", "local-proxy-arp"]).optional().describe("ARP mode for the interface"),
28450
+ hide_ssid: z121.boolean().optional().describe("Legacy: do not broadcast the SSID in beacons (AP modes)"),
28451
+ wireless_protocol: z121.string().optional().describe("Legacy: wireless protocol, e.g. '802.11', 'nv2', 'nstreme'"),
28452
+ scan_list: z121.string().optional().describe("Legacy: frequencies/ranges to scan (e.g. 'default' or '5180-5320')"),
28453
+ frequency_mode: z121.enum(["manual-txpower", "regulatory-domain", "superchannel"]).optional().describe("Legacy: regulatory frequency mode"),
28454
+ country: z121.string().optional().describe("Legacy: regulatory country setting (e.g. 'united states')"),
28455
+ antenna_gain: z121.number().int().optional().describe("Legacy: antenna gain in dBi used for tx-power calculations"),
28456
+ wds_mode: z121.enum(["disabled", "dynamic", "dynamic-mesh", "static", "static-mesh"]).optional().describe("Legacy: WDS mode"),
28457
+ wds_default_bridge: z121.string().optional().describe("Legacy: bridge that dynamic WDS interfaces are added to"),
28458
+ default_authentication: z121.boolean().optional().describe("Legacy: allow clients not in the access-list to authenticate"),
28459
+ default_forwarding: z121.boolean().optional().describe("Legacy: allow client-to-client forwarding by default"),
28460
+ tx_power: z121.number().int().optional().describe("Legacy: manual transmit power in dBm"),
28461
+ tx_power_mode: z121.enum(["default", "card-rates", "all-rates-fixed", "manual-table"]).optional().describe("Legacy: how tx-power is determined"),
28462
+ distance: z121.string().optional().describe("Legacy: link distance ('dynamic', 'indoors', or a km value)"),
28463
+ disconnect_timeout: z121.string().optional().describe("Legacy: time before a non-responding client is disconnected")
28242
28464
  },
28243
28465
  async handler(a, ctx) {
28244
28466
  ctx.info(`Creating wireless interface: name=${a.name}, ssid=${a.ssid}`);
@@ -28270,9 +28492,9 @@ ${details}`;
28270
28492
  annotations: READ,
28271
28493
  description: "Lists all wireless interfaces (`/interface wifi`, `/interface wifiwave2`, `/interface wireless`, `/interface wlan`) \u2014 probes every supported command path and aggregates results. " + "Filters by name_filter (substring match), disabled_only, or running_only. " + "For full property detail on a single interface use get_wireless_interface; to see currently connected clients use get_wireless_registration_table. " + "Falls back to `/interface print` with debugging info when no wireless interfaces match, to help identify the correct path on the device.",
28272
28494
  inputSchema: {
28273
- name_filter: z120.string().optional(),
28274
- disabled_only: z120.boolean().default(false),
28275
- running_only: z120.boolean().default(false)
28495
+ name_filter: z121.string().optional(),
28496
+ disabled_only: z121.boolean().default(false),
28497
+ running_only: z121.boolean().default(false)
28276
28498
  },
28277
28499
  async handler(a, ctx) {
28278
28500
  ctx.info(`Listing wireless interfaces with filters: name=${a.name_filter}`);
@@ -28326,7 +28548,7 @@ NOTE: If you see wireless interfaces above, they might be using a different comm
28326
28548
  title: "Get Wireless Interface Details",
28327
28549
  annotations: READ,
28328
28550
  description: "Retrieves the full detail of one named wireless interface (`<auto-detected path> print detail where name=...`), " + "probing `/interface wifi`, `/interface wifiwave2`, `/interface wireless`, and `/interface wlan` in order. " + "Use when you need all properties of a single interface; for a summary of all interfaces use list_wireless_interfaces. " + "Returns the complete property set for the named interface, or an error if not found.",
28329
- inputSchema: { name: z120.string() },
28551
+ inputSchema: { name: z121.string() },
28330
28552
  async handler(a, ctx) {
28331
28553
  ctx.info(`Getting wireless interface details: name=${a.name}`);
28332
28554
  const interfaceType = await detectWirelessInterfaceType(ctx);
@@ -28345,7 +28567,7 @@ ${result}`;
28345
28567
  title: "Remove Wireless Interface",
28346
28568
  annotations: DESTRUCTIVE,
28347
28569
  description: "Permanently deletes a named wireless interface (`<auto-detected path> remove [find name=...]`). " + "Verifies the interface exists first (count-only check) and returns an error if not found. " + "This action is irreversible \u2014 to keep the interface but stop traffic use disable_wireless_interface; " + "for property changes only use update_wireless_interface.",
28348
- inputSchema: { name: z120.string() },
28570
+ inputSchema: { name: z121.string() },
28349
28571
  async handler(a, ctx) {
28350
28572
  ctx.info(`Removing wireless interface: name=${a.name}`);
28351
28573
  const interfaceType = await detectWirelessInterfaceType(ctx);
@@ -28365,7 +28587,7 @@ ${result}`;
28365
28587
  title: "Enable Wireless Interface",
28366
28588
  annotations: WRITE_IDEMPOTENT,
28367
28589
  description: "Enables a named wireless interface that is currently disabled (`<auto-detected path> enable [find name=...]`). " + "Idempotent \u2014 safe to call on an already-enabled interface. " + "For the reverse operation use disable_wireless_interface; to change other settings at the same time use update_wireless_interface. " + "Obtain the interface name from list_wireless_interfaces.",
28368
- inputSchema: { name: z120.string() },
28590
+ inputSchema: { name: z121.string() },
28369
28591
  async handler(a, ctx) {
28370
28592
  ctx.info(`Enabling wireless interface: ${a.name}`);
28371
28593
  const interfaceType = await detectWirelessInterfaceType(ctx);
@@ -28382,7 +28604,7 @@ ${result}`;
28382
28604
  title: "Disable Wireless Interface",
28383
28605
  annotations: WRITE_IDEMPOTENT,
28384
28606
  description: "Disables a named wireless interface without removing it (`<auto-detected path> disable [find name=...]`). " + "Idempotent \u2014 safe to call on an already-disabled interface. " + "For the reverse operation use enable_wireless_interface; to delete the interface permanently use remove_wireless_interface. " + "Obtain the interface name from list_wireless_interfaces.",
28385
- inputSchema: { name: z120.string() },
28607
+ inputSchema: { name: z121.string() },
28386
28608
  async handler(a, ctx) {
28387
28609
  ctx.info(`Disabling wireless interface: ${a.name}`);
28388
28610
  const interfaceType = await detectWirelessInterfaceType(ctx);
@@ -28400,8 +28622,8 @@ ${result}`;
28400
28622
  annotations: READ,
28401
28623
  description: "Scans for visible nearby wireless networks/SSIDs/APs in range (`<auto-detected path> scan <interface> duration=<n>`). " + "Use to discover external networks \u2014 not to list connected clients. " + "For currently associated client stations use get_wireless_registration_table instead. " + "`interface` is the local wireless interface name to scan from (e.g. `wlan1`); `duration` is scan time in seconds (default 5). " + "Returns raw scan output from the device.",
28402
28624
  inputSchema: {
28403
- interface: z120.string(),
28404
- duration: z120.number().int().default(5)
28625
+ interface: z121.string(),
28626
+ duration: z121.number().int().default(5)
28405
28627
  },
28406
28628
  async handler(a, ctx) {
28407
28629
  ctx.info(`Scanning wireless networks on interface: ${a.interface}`);
@@ -28423,7 +28645,7 @@ ${result}`;
28423
28645
  annotations: READ,
28424
28646
  description: "Retrieves the wireless registration table \u2014 the list of client stations currently associated to this AP (`<auto-detected path> registration-table print [where interface=...]`). " + "Each row is an actively connected wireless client with its MAC address, signal strength, and statistics. " + "To discover nearby external APs/SSIDs instead use scan_wireless_networks. " + "Optionally filter by interface name; omit to return all clients across all wireless interfaces.",
28425
28647
  inputSchema: {
28426
- interface: z120.string().optional()
28648
+ interface: z121.string().optional()
28427
28649
  },
28428
28650
  async handler(a, ctx) {
28429
28651
  ctx.info(`Getting wireless registration table for interface: ${a.interface}`);
@@ -28485,7 +28707,7 @@ For legacy systems:
28485
28707
  title: "Create Wireless Security Profile (Legacy v6 Only \u2014 Not Implemented)",
28486
28708
  annotations: WRITE,
28487
28709
  description: "Stub for creating a `/interface wireless security-profiles` entry \u2014 a RouterOS v6 concept that does not exist in v7. " + "On RouterOS v7 devices (`/interface wifi` or `/interface wifiwave2`) always returns a not-supported message; security is configured directly on the interface. " + "On v6 this is also not implemented and returns an error. " + "For v6 interface creation with a security profile use create_wireless_interface (security_profile arg); for v7, security is configured directly on the interface but is not exposed by this server's wireless tools.",
28488
- inputSchema: { name: z120.string() },
28710
+ inputSchema: { name: z121.string() },
28489
28711
  async handler(_a, ctx) {
28490
28712
  const interfaceType = await detectWirelessInterfaceType(ctx);
28491
28713
  if (interfaceType && V7_WIFI.includes(interfaceType)) {
@@ -28512,7 +28734,7 @@ For legacy systems:
28512
28734
  title: "Get Wireless Security Profile (Legacy v6 Only \u2014 Not Implemented)",
28513
28735
  annotations: READ,
28514
28736
  description: "Stub for retrieving a named `/interface wireless security-profiles` entry \u2014 a RouterOS v6 concept that does not exist in v7. " + "On RouterOS v7 devices always returns a not-supported message; on v6 also not implemented. " + "Use get_wireless_interface to inspect the security settings on a v7 wireless interface instead.",
28515
- inputSchema: { name: z120.string() },
28737
+ inputSchema: { name: z121.string() },
28516
28738
  async handler(_a, ctx) {
28517
28739
  const interfaceType = await detectWirelessInterfaceType(ctx);
28518
28740
  if (interfaceType && V7_WIFI.includes(interfaceType)) {
@@ -28526,7 +28748,7 @@ For legacy systems:
28526
28748
  title: "Remove Wireless Security Profile (Legacy v6 Only \u2014 Not Implemented)",
28527
28749
  annotations: DESTRUCTIVE,
28528
28750
  description: "Stub for deleting a named `/interface wireless security-profiles` entry \u2014 a RouterOS v6 concept that does not exist in v7. " + "On RouterOS v7 devices always returns a not-supported message; on v6 also not implemented. " + "To delete a wireless interface entirely use remove_wireless_interface; to change security settings use update_wireless_interface.",
28529
- inputSchema: { name: z120.string() },
28751
+ inputSchema: { name: z121.string() },
28530
28752
  async handler(_a, ctx) {
28531
28753
  const interfaceType = await detectWirelessInterfaceType(ctx);
28532
28754
  if (interfaceType && V7_WIFI.includes(interfaceType)) {
@@ -28541,8 +28763,8 @@ For legacy systems:
28541
28763
  annotations: WRITE,
28542
28764
  description: "Stub for assigning a named security profile to a v6 `/interface wireless` interface \u2014 a RouterOS v6 concept that does not exist in v7. " + "On RouterOS v7 devices always returns a not-supported message because security is set directly on the interface. " + "On v6 also not implemented. " + "To update a wireless interface's settings on supported versions use update_wireless_interface.",
28543
28765
  inputSchema: {
28544
- interface_name: z120.string(),
28545
- security_profile: z120.string()
28766
+ interface_name: z121.string(),
28767
+ security_profile: z121.string()
28546
28768
  },
28547
28769
  async handler(_a, ctx) {
28548
28770
  const interfaceType = await detectWirelessInterfaceType(ctx);
@@ -28583,7 +28805,7 @@ For legacy systems:
28583
28805
  title: "Remove Wireless Access List Entry (Legacy v6 Only \u2014 Not Implemented)",
28584
28806
  annotations: DESTRUCTIVE,
28585
28807
  description: "Stub for removing a `/interface wireless access-list` entry by ID \u2014 a RouterOS v6 concept. " + "On RouterOS v7 devices always returns a not-supported message; on v6 also not implemented. " + "The entry_id would take the `.id` from list_wireless_access_list if that were implemented. " + "For v7 access control use list_filter_rules and remove_filter_rule instead.",
28586
- inputSchema: { entry_id: z120.string() },
28808
+ inputSchema: { entry_id: z121.string() },
28587
28809
  async handler(_a, ctx) {
28588
28810
  const interfaceType = await detectWirelessInterfaceType(ctx);
28589
28811
  if (interfaceType && V7_WIFI.includes(interfaceType)) {
@@ -28598,31 +28820,31 @@ For legacy systems:
28598
28820
  annotations: WRITE_IDEMPOTENT,
28599
28821
  description: "Updates settings on an existing named wireless interface (`<auto-detected path> set [find name=...] ...`). " + "Supports renaming (new_name), changing SSID, toggling disabled state, and updating comment. " + "Verifies the interface exists before applying; returns 'No updates specified.' if no optional fields are provided. " + "To only enable or disable the interface prefer enable_wireless_interface or disable_wireless_interface; " + "to create a new interface use create_wireless_interface; to delete one use remove_wireless_interface. " + "Returns the updated interface's full detail print.",
28600
28822
  inputSchema: {
28601
- name: z120.string(),
28602
- new_name: z120.string().optional(),
28603
- ssid: z120.string().optional(),
28604
- disabled: z120.boolean().optional(),
28605
- comment: z120.string().optional(),
28606
- mtu: z120.number().int().optional().describe("Interface MTU in bytes"),
28607
- arp: z120.enum(["disabled", "enabled", "proxy-arp", "reply-only", "local-proxy-arp"]).optional().describe("ARP mode for the interface"),
28608
- hide_ssid: z120.boolean().optional().describe("Legacy: do not broadcast the SSID in beacons (AP modes)"),
28609
- wireless_protocol: z120.string().optional().describe("Legacy: wireless protocol, e.g. '802.11', 'nv2', 'nstreme'"),
28610
- scan_list: z120.string().optional().describe("Legacy: frequencies/ranges to scan (e.g. 'default' or '5180-5320')"),
28611
- frequency: z120.string().optional().describe("Legacy: operating frequency in MHz"),
28612
- band: z120.string().optional().describe("Legacy: band, e.g. '2ghz-b/g/n' or '5ghz-a/n/ac'"),
28613
- channel_width: z120.enum(["20mhz", "40mhz", "80mhz", "160mhz", "20/40mhz-eC", "20/40mhz-Ce"]).optional().describe("Legacy: channel width"),
28614
- frequency_mode: z120.enum(["manual-txpower", "regulatory-domain", "superchannel"]).optional().describe("Legacy: regulatory frequency mode"),
28615
- country: z120.string().optional().describe("Legacy: regulatory country setting (e.g. 'united states')"),
28616
- antenna_gain: z120.number().int().optional().describe("Legacy: antenna gain in dBi used for tx-power calculations"),
28617
- wds_mode: z120.enum(["disabled", "dynamic", "dynamic-mesh", "static", "static-mesh"]).optional().describe("Legacy: WDS mode"),
28618
- wds_default_bridge: z120.string().optional().describe("Legacy: bridge that dynamic WDS interfaces are added to"),
28619
- default_authentication: z120.boolean().optional().describe("Legacy: allow clients not in the access-list to authenticate"),
28620
- default_forwarding: z120.boolean().optional().describe("Legacy: allow client-to-client forwarding by default"),
28621
- tx_power: z120.number().int().optional().describe("Legacy: manual transmit power in dBm"),
28622
- tx_power_mode: z120.enum(["default", "card-rates", "all-rates-fixed", "manual-table"]).optional().describe("Legacy: how tx-power is determined"),
28623
- distance: z120.string().optional().describe("Legacy: link distance ('dynamic', 'indoors', or a km value)"),
28624
- disconnect_timeout: z120.string().optional().describe("Legacy: time before a non-responding client is disconnected"),
28625
- security_profile: z120.string().optional().describe("Legacy: name of the security profile to apply")
28823
+ name: z121.string(),
28824
+ new_name: z121.string().optional(),
28825
+ ssid: z121.string().optional(),
28826
+ disabled: z121.boolean().optional(),
28827
+ comment: z121.string().optional(),
28828
+ mtu: z121.number().int().optional().describe("Interface MTU in bytes"),
28829
+ arp: z121.enum(["disabled", "enabled", "proxy-arp", "reply-only", "local-proxy-arp"]).optional().describe("ARP mode for the interface"),
28830
+ hide_ssid: z121.boolean().optional().describe("Legacy: do not broadcast the SSID in beacons (AP modes)"),
28831
+ wireless_protocol: z121.string().optional().describe("Legacy: wireless protocol, e.g. '802.11', 'nv2', 'nstreme'"),
28832
+ scan_list: z121.string().optional().describe("Legacy: frequencies/ranges to scan (e.g. 'default' or '5180-5320')"),
28833
+ frequency: z121.string().optional().describe("Legacy: operating frequency in MHz"),
28834
+ band: z121.string().optional().describe("Legacy: band, e.g. '2ghz-b/g/n' or '5ghz-a/n/ac'"),
28835
+ channel_width: z121.enum(["20mhz", "40mhz", "80mhz", "160mhz", "20/40mhz-eC", "20/40mhz-Ce"]).optional().describe("Legacy: channel width"),
28836
+ frequency_mode: z121.enum(["manual-txpower", "regulatory-domain", "superchannel"]).optional().describe("Legacy: regulatory frequency mode"),
28837
+ country: z121.string().optional().describe("Legacy: regulatory country setting (e.g. 'united states')"),
28838
+ antenna_gain: z121.number().int().optional().describe("Legacy: antenna gain in dBi used for tx-power calculations"),
28839
+ wds_mode: z121.enum(["disabled", "dynamic", "dynamic-mesh", "static", "static-mesh"]).optional().describe("Legacy: WDS mode"),
28840
+ wds_default_bridge: z121.string().optional().describe("Legacy: bridge that dynamic WDS interfaces are added to"),
28841
+ default_authentication: z121.boolean().optional().describe("Legacy: allow clients not in the access-list to authenticate"),
28842
+ default_forwarding: z121.boolean().optional().describe("Legacy: allow client-to-client forwarding by default"),
28843
+ tx_power: z121.number().int().optional().describe("Legacy: manual transmit power in dBm"),
28844
+ tx_power_mode: z121.enum(["default", "card-rates", "all-rates-fixed", "manual-table"]).optional().describe("Legacy: how tx-power is determined"),
28845
+ distance: z121.string().optional().describe("Legacy: link distance ('dynamic', 'indoors', or a km value)"),
28846
+ disconnect_timeout: z121.string().optional().describe("Legacy: time before a non-responding client is disconnected"),
28847
+ security_profile: z121.string().optional().describe("Legacy: name of the security profile to apply")
28626
28848
  },
28627
28849
  async handler(a, ctx) {
28628
28850
  ctx.info(`Updating wireless interface: name=${a.name}`);
@@ -28651,7 +28873,7 @@ ${details}`;
28651
28873
  annotations: READ,
28652
28874
  description: "Lists all available regulatory country codes for wireless configuration " + "(`<auto-detected path> country print`). Each entry shows the country name/code and the " + "regulatory constraints it implies (allowed frequencies, max TX power, DFS rules, etc.). " + "Use this to discover valid values before setting a country on a wireless interface.",
28653
28875
  inputSchema: {
28654
- search: z120.string().optional().describe("Optional search string to filter countries by name or code.")
28876
+ search: z121.string().optional().describe("Optional search string to filter countries by name or code.")
28655
28877
  },
28656
28878
  async handler(a, ctx) {
28657
28879
  ctx.info("Listing Wi-Fi regulatory countries");
@@ -28678,7 +28900,7 @@ ${result}`;
28678
28900
  ];
28679
28901
 
28680
28902
  // src/tools/wifi-optimizer.ts
28681
- import { z as z121 } from "zod";
28903
+ import { z as z122 } from "zod";
28682
28904
  function pickBestFrequency(monitor) {
28683
28905
  const cands = [];
28684
28906
  for (const line of monitor.split(`
@@ -28699,9 +28921,9 @@ var wifiOptimizerTools = [
28699
28921
  annotations: WRITE,
28700
28922
  description: "Runs an RF survey on a wireless radio (`/interface wireless frequency-monitor`, blocking for " + "`duration`), finds the least-congested channel, and reports a before/after. DEFAULTS TO A DRY " + "RUN (`apply=false`) \u2014 it surveys and recommends; set `apply=true` to set the radio to the best " + "frequency (`/interface wireless set`). Targets the LEGACY wireless stack; for wifiwave2 " + "(`/interface wifi`) tune via those tools. Returns the per-channel usage finding and the chosen " + "frequency.",
28701
28923
  inputSchema: {
28702
- interface: z121.string().describe("Wireless interface, e.g. 'wlan1'"),
28703
- duration: z121.string().default("5").describe("Survey duration in seconds"),
28704
- apply: z121.boolean().default(false).describe("false = survey & recommend (default); true = set it")
28924
+ interface: z122.string().describe("Wireless interface, e.g. 'wlan1'"),
28925
+ duration: z122.string().default("5").describe("Survey duration in seconds"),
28926
+ apply: z122.boolean().default(false).describe("false = survey & recommend (default); true = set it")
28705
28927
  },
28706
28928
  async handler(a, ctx) {
28707
28929
  ctx.info(`Wi-Fi survey on ${a.interface} for ${a.duration}s`);
@@ -28726,16 +28948,16 @@ ${monitor.trim() || "(empty)"}`;
28726
28948
  ];
28727
28949
 
28728
28950
  // src/tools/memory.ts
28729
- import { z as z122 } from "zod";
28730
- var EntityInput = z122.object({
28731
- name: z122.string().describe("Unique name of the entity"),
28732
- entityType: z122.string().describe("Type/category of the entity (e.g. 'router', 'subnet', 'person')"),
28733
- observations: z122.array(z122.string()).optional().describe("Initial observations (facts) to attach")
28951
+ import { z as z123 } from "zod";
28952
+ var EntityInput = z123.object({
28953
+ name: z123.string().describe("Unique name of the entity"),
28954
+ entityType: z123.string().describe("Type/category of the entity (e.g. 'router', 'subnet', 'person')"),
28955
+ observations: z123.array(z123.string()).optional().describe("Initial observations (facts) to attach")
28734
28956
  });
28735
- var RelationInput = z122.object({
28736
- from: z122.string().describe("Source entity name"),
28737
- to: z122.string().describe("Target entity name"),
28738
- relationType: z122.string().describe("Relation type in active voice (e.g. 'manages', 'connects_to', 'depends_on')")
28957
+ var RelationInput = z123.object({
28958
+ from: z123.string().describe("Source entity name"),
28959
+ to: z123.string().describe("Target entity name"),
28960
+ relationType: z123.string().describe("Relation type in active voice (e.g. 'manages', 'connects_to', 'depends_on')")
28739
28961
  });
28740
28962
  var memoryTools = [
28741
28963
  defineTool({
@@ -28744,7 +28966,7 @@ var memoryTools = [
28744
28966
  annotations: WRITE,
28745
28967
  description: "Create one or more new entities in the persistent knowledge graph. Each entity has a " + "unique name, a type (e.g. 'router', 'subnet', 'vlan', 'person', 'config_pattern'), " + "and optional initial observations. Entities that already exist are silently skipped. " + "Use this to record things the AI learns about the network, devices, users, or patterns.",
28746
28968
  inputSchema: {
28747
- entities: z122.array(EntityInput).min(1).describe("Entities to create")
28969
+ entities: z123.array(EntityInput).min(1).describe("Entities to create")
28748
28970
  },
28749
28971
  async handler(args) {
28750
28972
  const store3 = await getMemoryStore();
@@ -28762,7 +28984,7 @@ ${created.map((e) => ` - ${e.name} (${e.entityType})`).join(`
28762
28984
  annotations: WRITE,
28763
28985
  description: "Create directed relations between existing entities in the knowledge graph. Both " + "endpoint entities must already exist. Use active voice for relation types (e.g. " + "'manages', 'connects_to', 'provides_dhcp_for', 'part_of'). Duplicate relations " + "are silently skipped.",
28764
28986
  inputSchema: {
28765
- relations: z122.array(RelationInput).min(1).describe("Relations to create")
28987
+ relations: z123.array(RelationInput).min(1).describe("Relations to create")
28766
28988
  },
28767
28989
  async handler(args) {
28768
28990
  const store3 = await getMemoryStore();
@@ -28780,9 +29002,9 @@ ${created.map((r) => ` - ${r.from} --[${r.relationType}]--> ${r.to}`).join(`
28780
29002
  annotations: WRITE,
28781
29003
  description: "Add new observations (discrete facts) to existing entities in the knowledge graph. " + "Each observation is a string (e.g. 'runs RouterOS 7.16', 'has 4 ether ports', " + "'managed by John'). Duplicate observations on the same entity are silently skipped. " + "The entity must already exist.",
28782
29004
  inputSchema: {
28783
- observations: z122.array(z122.object({
28784
- entityName: z122.string().describe("Name of the existing entity"),
28785
- contents: z122.array(z122.string()).min(1).describe("Observations to add")
29005
+ observations: z123.array(z123.object({
29006
+ entityName: z123.string().describe("Name of the existing entity"),
29007
+ contents: z123.array(z123.string()).min(1).describe("Observations to add")
28786
29008
  })).min(1)
28787
29009
  },
28788
29010
  async handler(args) {
@@ -28802,7 +29024,7 @@ ${lines.join(`
28802
29024
  annotations: DESTRUCTIVE,
28803
29025
  description: "Remove entities from the knowledge graph. This also deletes all their observations " + "and any relations where they appear as an endpoint (cascade delete).",
28804
29026
  inputSchema: {
28805
- entityNames: z122.array(z122.string()).min(1).describe("Names of entities to delete")
29027
+ entityNames: z123.array(z123.string()).min(1).describe("Names of entities to delete")
28806
29028
  },
28807
29029
  async handler(args) {
28808
29030
  const store3 = await getMemoryStore();
@@ -28816,9 +29038,9 @@ ${lines.join(`
28816
29038
  annotations: DESTRUCTIVE,
28817
29039
  description: "Remove specific observations from entities in the knowledge graph. The entity " + "itself is kept; only the named observation strings are removed.",
28818
29040
  inputSchema: {
28819
- deletions: z122.array(z122.object({
28820
- entityName: z122.string().describe("Entity to remove observations from"),
28821
- observations: z122.array(z122.string()).min(1).describe("Exact observation strings to delete")
29041
+ deletions: z123.array(z123.object({
29042
+ entityName: z123.string().describe("Entity to remove observations from"),
29043
+ observations: z123.array(z123.string()).min(1).describe("Exact observation strings to delete")
28822
29044
  })).min(1)
28823
29045
  },
28824
29046
  async handler(args) {
@@ -28833,7 +29055,7 @@ ${lines.join(`
28833
29055
  annotations: DESTRUCTIVE,
28834
29056
  description: "Remove specific relations from the knowledge graph. Each relation is identified " + "by its (from, to, relationType) triple.",
28835
29057
  inputSchema: {
28836
- relations: z122.array(RelationInput).min(1).describe("Relations to delete")
29058
+ relations: z123.array(RelationInput).min(1).describe("Relations to delete")
28837
29059
  },
28838
29060
  async handler(args) {
28839
29061
  const store3 = await getMemoryStore();
@@ -28861,8 +29083,8 @@ ${lines.join(`
28861
29083
  annotations: READ,
28862
29084
  description: "Search for entities in the knowledge graph by name, type, or observation content. " + "Returns matching entities with their observations, plus any relations where at " + "least one endpoint is in the result set.",
28863
29085
  inputSchema: {
28864
- query: z122.string().describe("Search term \u2014 matched against entity names, types, and observation content"),
28865
- limit: z122.number().int().positive().optional().describe("Max entities to return (default 50)")
29086
+ query: z123.string().describe("Search term \u2014 matched against entity names, types, and observation content"),
29087
+ limit: z123.number().int().positive().optional().describe("Max entities to return (default 50)")
28866
29088
  },
28867
29089
  async handler(args) {
28868
29090
  const store3 = await getMemoryStore();
@@ -28878,7 +29100,7 @@ ${lines.join(`
28878
29100
  annotations: READ,
28879
29101
  description: "Retrieve specific entities by exact name from the knowledge graph, with all their " + "observations and any relations where at least one endpoint is in the requested set.",
28880
29102
  inputSchema: {
28881
- names: z122.array(z122.string()).min(1).describe("Exact entity names to retrieve")
29103
+ names: z123.array(z123.string()).min(1).describe("Exact entity names to retrieve")
28882
29104
  },
28883
29105
  async handler(args) {
28884
29106
  const store3 = await getMemoryStore();
@@ -28899,6 +29121,13 @@ var moduleCatalog = [
28899
29121
  description: "Always-discoverable meta-tools that make the whole catalog reachable when the host can't " + "surface a specific tool: search by intent (`find_tools`), inspect a schema (`describe_tool`), " + "and run any tool by name with full validation (`invoke_tool`).",
28900
29122
  tools: toolGatewayTools
28901
29123
  },
29124
+ {
29125
+ label: "Server Pulse",
29126
+ slug: "server-pulse",
29127
+ group: "Discovery & Meta",
29128
+ description: "Server self-awareness: running version, update availability, release notes, " + "upgrade path, and server vitals. No RouterOS device is contacted.",
29129
+ tools: serverPulseTools
29130
+ },
28902
29131
  {
28903
29132
  label: "RouterOS CLI",
28904
29133
  slug: "raw-command",
@@ -29755,7 +29984,7 @@ var moduleCatalog = [
29755
29984
  }
29756
29985
  ];
29757
29986
  var allToolModules = moduleCatalog.map((m) => m.tools);
29758
- var ALWAYS_ON_MODULES = new Set(["tool-gateway", "memory"]);
29987
+ var ALWAYS_ON_MODULES = new Set(["tool-gateway", "memory", "server-pulse"]);
29759
29988
  function selectToolModules(filter = {}, catalog = moduleCatalog) {
29760
29989
  const lc = (xs) => new Set((xs ?? []).map((s) => s.toLowerCase()));
29761
29990
  const enabledModules = lc(filter.enabledModules);
@@ -29776,4 +30005,4 @@ function selectToolModules(filter = {}, catalog = moduleCatalog) {
29776
30005
  }).map((m) => m.tools);
29777
30006
  }
29778
30007
 
29779
- export { DeviceConfigSchema, MikrotikConfigSchema, loadConfig, logger, MikroTikSSHClient, setConfig, getConfig, listDevices, deviceLabels, resolveDeviceName, deviceDirectory, getDevice, SafeModeManager, getSafeModeManager, executeMikrotikCommand, defineTool, registerTools, PROMPTS_DIR, PROJECT_ROOT, registerUiResources, moduleCatalog, allToolModules, ALWAYS_ON_MODULES, selectToolModules };
30008
+ export { DeviceConfigSchema, MikrotikConfigSchema, loadConfig, logger, MikroTikSSHClient, setConfig, getConfig, listDevices, deviceLabels, resolveDeviceName, deviceDirectory, getDevice, SafeModeManager, getSafeModeManager, executeMikrotikCommand, defineTool, registerTools, PROMPTS_DIR, registerUiResources, VERSION, WEBSITE_URL, LOGO_URL, SERVER_TITLE, SERVER_DESCRIPTION, SERVER_NAME, loadFileCacheSync, updateSummaryLine, moduleCatalog, allToolModules, ALWAYS_ON_MODULES, selectToolModules };