Mikrotik (ai-solutions.ru) MCP Server

@ai-solutions.ru/mikrotik-mcp-server npm v2.0.3

Published by @ai-solutions.ru — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

AI-powered Model Context Protocol (MCP) server for MikroTik RouterOS automation

Trust grade
A
92/100
Last scanned get badge →
Trust
A · 92/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
A Why this grade threat 99 − adoption risk = 92/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 1.2 = 99. What the published surface and source actually contain:

PointsWhat was foundCategory
−1.2 Package runs install-time scripts MTC-SUP-010 supply-chain

2. Client adoption risk — 99 − 7 = 92. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−6 capability blast radius (high) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 12

high Sensitive-source and external-sink co-existMTC-FLOW-004

Tools that read sensitive data ([get_logs]) and tools that can send data out ([execute_command, schedule_tasks]) are exposed together. An agent can move private data to the sink.

Evidence: sources [get_logs] → sinks [execute_command, schedule_tasks]

Fix: Keep secret-reading and egress capabilities on separate, separately-approved servers.

Location: flow get_logs → execute_command

high Tool "execute_command" exposes command/code executionMTC-CAP-001

Tool "execute_command" appears to run shell commands or evaluate code (keyword "execute command" in tool name, parameter "command"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool execute_command

high Tool "schedule_tasks" exposes command/code executionMTC-CAP-001

Tool "schedule_tasks" appears to run shell commands or evaluate code (parameter "script"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool schedule_tasks

high Shell/command execution in server code (dist/cli/commands/claude.js)MTC-SRC-002

In the server's implementation (`dist/cli/commands/claude.js:17`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: t(require("os")); const child_process_1 = require("child_process"); const util_1 = require("util"); const inquirer_1 = _

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/cli/commands/claude.js

high Shell/command execution in server code (dist/notifications/desktop-notifier.js)MTC-SRC-002

In the server's implementation (`dist/notifications/desktop-notifier.js:39`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: equire("events"); const child_process_1 = require("child_process"); const util_1 = require("util"); const os = __importS

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/notifications/desktop-notifier.js

medium Unconstrained command parameter "command" on "execute_command"MTC-CAP-006

Tool "execute_command" takes a command-shaped parameter "command" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool execute_command · inputSchema.properties.command

medium Unconstrained command parameter "script" on "schedule_tasks"MTC-CAP-006

Tool "schedule_tasks" takes a command-shaped parameter "script" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool schedule_tasks · inputSchema.properties.script

low Mutating tool "execute_command" declares no destructiveHintMTC-CAP-005

Tool "execute_command" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool execute_command

low Mutating tool "schedule_tasks" declares no destructiveHintMTC-CAP-005

Tool "schedule_tasks" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool schedule_tasks

low Shell/command execution in packaging/dev tooling (test/test-real-routeros.mjs)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`test/test-real-routeros.mjs:3`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process'; import readline from 'readline'; // Set test environment process.env.MIKROTIK_H

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server test/test-real-routeros.mjs

low Shell/command execution in packaging/dev tooling (test/test-v2-complete.mjs)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`test/test-v2-complete.mjs:3`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process'; import readline from 'readline'; console.log('🧪 Complete Testing of MikroTik M

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server test/test-v2-complete.mjs

low Package runs install-time scripts (postinstall)MTC-SUP-010

"@ai-solutions.ru/mikrotik-mcp-server" executes postinstall script(s) at install time. An install hook runs at install time; most are routine build/setup, but review what it does before trusting it.

Evidence: node scripts/postinstall.js

Fix: Review the scripts; install with --ignore-scripts where possible and vet what they do.

Location: package @ai-solutions.ru/mikrotik-mcp-server

Tools 77

Each tool and what it can reach — statically extracted from the published source.

  • execute_commandruns code / shell
  • get_logsreads sensitive data
  • schedule_tasksruns code / shell
  • Active Connectionsno sensitive capability
  • add_firewall_ruleno sensitive capability
  • analyze_routerno sensitive capability
  • analyze_securityno sensitive capability
  • analyze_trafficno sensitive capability
  • API Documentationno sensitive capability
  • Available Commandsno sensitive capability
Show 67 more tools ↓
  • Available Toolsno sensitive capability
  • backup_configurationno sensitive capability
  • check_healthno sensitive capability
  • Command Referenceno sensitive capability
  • configure_basicno sensitive capability
  • configure_bridgesno sensitive capability
  • configure_certificatesno sensitive capability
  • configure_firewallno sensitive capability
  • configure_mplsno sensitive capability
  • configure_networkno sensitive capability
  • configure_ospfno sensitive capability
  • configure_qosno sensitive capability
  • configure_routingno sensitive capability
  • configure_tunnelno sensitive capability
  • connectno sensitive capability
  • Connection Statusno sensitive capability
  • connection_limitno sensitive capability
  • create_backupno sensitive capability
  • Current Configurationno sensitive capability
  • disconnectno sensitive capability
  • generate_reportno sensitive capability
  • get_api_endpoint_schemano sensitive capability
  • get_dhcp_leasesno sensitive capability
  • get_firewall_rulesno sensitive capability
  • get_ip_addressesno sensitive capability
  • get_routesno sensitive capability
  • get_system_healthno sensitive capability
  • get_system_infono sensitive capability
  • get_wireless_clientsno sensitive capability
  • get-system-infono sensitive capability
  • invoke_api_endpointno sensitive capability
  • lan_interfaceno sensitive capability
  • lan_subnetno sensitive capability
  • levelno sensitive capability
  • list_api_endpointsno sensitive capability
  • list_interfacesno sensitive capability
  • manage_dhcp_leasesno sensitive capability
  • manage_packagesno sensitive capability
  • manage_scriptsno sensitive capability
  • manage_usersno sensitive capability
  • mikrotik-mcp-serverno sensitive capability
  • monitor_connectionsno sensitive capability
  • monitor_performanceno sensitive capability
  • optimize_performanceno sensitive capability
  • Performance Metricsno sensitive capability
  • Router Statusno sensitive capability
  • router_nameno sensitive capability
  • secure_routerno sensitive capability
  • setup_basic_firewallno sensitive capability
  • setup_bgpno sensitive capability
  • setup_bondingno sensitive capability
  • setup_home_networkno sensitive capability
  • setup_hotspotno sensitive capability
  • setup_securityno sensitive capability
  • setup_vpnno sensitive capability
  • setup_wirelessno sensitive capability
  • System Informationno sensitive capability
  • System Logsno sensitive capability
  • system_resetno sensitive capability
  • test_connectionno sensitive capability
  • test-connectionno sensitive capability
  • Traffic Monitorno sensitive capability
  • troubleshoot_connectivityno sensitive capability
  • update_firmwareno sensitive capability
  • wan_interfaceno sensitive capability
  • wifi_passwordno sensitive capability
  • wifi_ssidno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v2.0.3 latest A 92/100 12 1.13.0 2026-09-07

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: A · 92/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/ai-solutions-ru-mikrotik-mcp-server/badge.svg)](https://mcptrustchecker.com/registry/ai-solutions-ru-mikrotik-mcp-server)
HTML
<a href="https://mcptrustchecker.com/registry/ai-solutions-ru-mikrotik-mcp-server"><img src="https://mcptrustchecker.com/registry/ai-solutions-ru-mikrotik-mcp-server/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/ai-solutions-ru-mikrotik-mcp-server/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan @ai-solutions.ru/mikrotik-mcp-server --online

Use the free API → How scoring works

Other implementations of Mikrotik 2

Independent packages implementing the same tool, scanned with the same engine. Compare all 3 side by side →

More in Cloud & DevOps