mikrotik-mcp
Provides tools to manage MikroTik RouterOS devices, including firewall, routing, DHCP/DNS, wireless, QoS, VPN, and system operations via SSH, with risk annotations and Safe Mode transactional support.
Allows configuration of OpenVPN servers and clients on MikroTik routers, including setting up server parameters, creating client connections, and managing certificates.
Enables management of WireGuard interfaces and peers on MikroTik routers, including adding peers, generating client configurations, and securing site-to-site or road warrior VPNs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mikrotik-mcpshow firewall rules"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@usex/mikrotik-mcp turns MikroTik RouterOS into 885 Model Context Protocol
tools any MCP client (Claude Desktop, Claude Code, Cursor, β¦) can call to read and
configure your router by talking to it. It reaches the device over plain SSH β no
agent, no package to install on RouterOS β runs on Bun, and
validates every call against a schema.
Point it at a router and go:
// claude_desktop_config.json
{
"mcpServers": {
"mikrotik": {
"command": "mikrotik-mcp",
"env": {
"MIKROTIK_HOST": "192.168.88.1",
"MIKROTIK_USERNAME": "admin",
"MIKROTIK_PASSWORD": "your-password",
},
},
},
}Then just ask:
"Show me the firewall input chain, then block SSH from the WAN under safe mode." "Build an IKEv2 site-to-site tunnel to 203.0.113.5 for 192.168.20.0/24." "Why can't VLAN 50 reach the internet?"
Highlights
π§° 885 tools, one per RouterOS scope β L2 (bridge, VLAN, wireless, PoE), L3 (addressing, routing, DHCP, DNS), security (firewall, NAT, address-lists, certificates), QoS, and system ops (users, logs, backups, scheduler).
π‘οΈ Attack detection β reads every device's log, correlates brute force, credential spraying and a login that succeeded after failures into incidents with evidence, and can block the source with a timed, reversible entry. Detect-only until you say otherwise. β
β±οΈ Scheduled audits β run the auditors on a cron with nobody in the loop, and hear only about what changed since the last run: new, worsened, resolved. β
π
explain_deviceβ turns a config into the architecture document that should have been in the wiki (topology diagram, what's exposed, what each chain does), and explains what the difference between two snapshots actually means. βπ§ͺ Offline simulator β trace a hypothetical packet through NAT, routing and firewall against a snapshot, with no device in the loop. Reports UNKNOWN rather than guessing. β
π Live observability dashboard β a localhost web UI that shows every tool call the AI makes in real time: inputs, outputs, latency, errors, per-device analytics. Secrets redacted. Jump to it β
π Complete VPN suite β WireGuard, IPsec (IKEv1/IKEv2), L2TP, PPTP, SSTP, OpenVPN, plus GRE/IPIP/EoIP/VXLAN. A
choose-vpn-solutionprompt picks one for you.π Safe Mode β wrap risky changes in a real transactional window; RouterOS holds them in memory and auto-reverts if your session drops, so you can't lock yourself out.
π¦ Risk-annotated β every tool is tagged read / write / destructive, so clients auto-approve reads and prompt on writes.
π§± Injection-safe β a command builder quotes/escapes every value; a hostname like
LAN; /system resetcan never split into a second command.π§ Multiple devices β name your routers and target one per call; configure both ends of a tunnel in one conversation.
πͺ SSH jump hosts β reach a router with no exposed port by tunnelling through a bastion (
jumpVia); commands, Safe Mode and file upload all ride the hop.β‘ Connection pooling β one persistent SSH session per device saves ~200-500 ms per command.
π REST API, opt-in β point a device at RouterOS 7.9+'s
/restfor structured JSON and real HTTP status codes, with automatic SSH fallback for anything REST can't express. Per-device, off by default.
Related MCP server: MikroMCP
Install
# Requires Bun β₯ 1.3 β https://bun.sh
bun add -g @usex/mikrotik-mcp
# Point it at your router and verify SSH connectivity
MIKROTIK_HOST=192.168.88.1 MIKROTIK_USERNAME=admin MIKROTIK_PASSWORD=β’β’β’β’ \
mikrotik-mcp auth-check
# Wire it into your MCP client (stdio by default)
mikrotik-mcp servePrefer SSH keys? Swap the password for a key file (add a passphrase if it's encrypted):
MIKROTIK_HOST=192.168.88.1 MIKROTIK_USERNAME=admin \
MIKROTIK_KEY_FILENAME=~/.ssh/id_ed25519 \
MIKROTIK_KEY_PASSPHRASE=β’β’β’β’ \
mikrotik-mcp auth-check # prints "Auth mode: SSH key"Prefer a one-click bundle (no Bun/Node/npm on the machine, credentials entered in
the host UI)? Build an .mcpb and drag it into Claude Desktop β Settings β Extensions:
bun run build:mcp # bundle for this machine
bun run build:mcp --target linux-x64 # or one target Β· build:mcp:all for every targetFull options: docs/configuration.md Β· MCPB details: docs/getting-started.md.
Simple usage β by scenario
Once the server is wired into your client, everything below is a plain-language request. The AI picks the right tool, validates it, and runs it. No CLI syntax to memorize.
π See what's on the router
"List the firewall filter rules and flag anything that allows WAN β LAN." "What DHCP leases are active right now?" "Show interface traffic and tell me which port is saturated."
All read-only β safe to auto-approve.
π§± Make a change, safely
"Enable safe mode, block inbound SSH on the WAN, then commit if I'm still connected."
Safe Mode holds the change in memory and reverts automatically if you lock yourself out:
enable_safe_mode β (make changes) β commit_safe_mode # persist
β rollback_safe_mode # discardπ Stand up a VPN
"Create a WireGuard interface on port 13231 and generate a client config for my laptop." "Build an IKEv2 site-to-site tunnel to 203.0.113.5 for 192.168.20.0/24."
Not sure which VPN? Ask the choose-vpn-solution prompt β it recommends one and
outlines the build. Every technology is covered:
Need | Use | Build it with |
MikroTik β MikroTik, modern clients | WireGuard |
|
Interop site-to-site / native IKEv2 | IPsec |
|
Built-in OS VPN clients | L2TP/IPsec |
|
Through restrictive firewalls | SSTP (TLS) |
|
Cross-platform | OpenVPN |
|
Route / L2-bridge between sites | GRE/IPIP/EoIP/VXLAN |
|
Details: docs/vpn-guide.md.
π§ Manage several routers at once
Name your routers and drive them all from one conversation β exactly what you need to set up a tunnel between two MikroTiks and test it from both ends:
// devices.json
{
"defaultDevice": "site-a",
"devices": {
"site-a": { "host": "203.0.113.10", "username": "admin", "keyFilename": "/keys/site-a" },
"site-b": { "host": "198.51.100.20", "username": "admin", "password": "β’β’β’β’" },
},
}mikrotik-mcp serve --config ./devices.json
mikrotik-mcp devices # site-a (default) Β· site-bEvery tool gains an optional device argument, and Safe Mode is per-device:
"On site-a create a WireGuard interface, on site-b add it as a peer, then ping across."
Behind a bastion with no exposed port? Jump through another router (jumpVia) β
commands, Safe Mode and SFTP all ride the hop. Full guide:
docs/multi-device.md.
π©Ί Diagnose and harden
"Why can't VLAN 50 reach the internet?" "Audit my firewall for shadowed and overly-broad rules." "Harden this router and show me the exact diff before committing."
These map to higher-level workflows β firewall audit, security hardening, change plan & dry-run β each read-only to inspect, dry-run + Safe Mode to fix.
π Observability dashboard
A localhost web dashboard that watches every tool call the LLM makes against this server β in real time. Off by default, zero overhead until you flip it on, and it runs alongside whatever transport you use:
mikrotik-mcp serve --dashboard # β http://127.0.0.1:9090Every call flows through one choke point in the registry, so the dashboard sees all of them, across every transport. Why you'll want it on:
ποΈ Live feed of every call β tool, inputs, outputs, target device, duration, success/error β streaming in over a Bun-native WebSocket (SSE fallback). Filter by tool / risk / device / status / free-text, pause & resume, export to CSV or JSON.
π Analytics at a glance β calls in window, calls/min, error rate, avg / p95 / p99 latency, distinct tools, output volume; top tools, by-risk and status donuts, by-device bars, and a recent-errors panel.
π Secrets redacted before storage β any password, private key, PSK or token is replaced with
Β«redactedΒ»before anything is stored or streamed. Set--dashboard-capture-body=falseto keep metadata only.πΈοΈ Devices & connectivity map β a hub-and-spoke graph of the server to each device, coloured by live SSH reachability, with per-device online/offline, latency, RouterOS identity/version and recent activity.
It also carries a page per flagship workflow β Attacks (live incidents, the evidence
behind each, guarded blocking), Schedules (audit posture over time and what regressed),
Explain (the architecture document with its topology diagram), Policies,
Simulator, Transactions, Flows and Rollout β plus Config Studio (edit
the config JSON with autocomplete + safe-apply auto-rollback), a live topology map from
MNDP discovery, a releases/upgrade timeline, and a reload/restart button. Everything persists to a Bun-native SQLite
store on your machine β no external database. Binds to loopback (127.0.0.1) by default;
set a bearer token (--dashboard-token) to expose it safely.
Live feed β call detail drawer. One call expanded: arguments, output, target device,
duration, risk annotation β secrets already Β«redactedΒ».
Clients. Every DHCP lease / connected station across devices, with identity, traffic and last-seen.
RADIUS & User Manager. Servers, sessions, profiles, limitations and vouchers.
Topology. Live L2 map built from MNDP neighbour discovery.
Packets. Packet captures started from the dashboard, with status and download.
Snapshots. /export-based config snapshots kept locally β browse and diff any two.
Drift Guard. Baseline vs. live config, with drift promoted or reconciled.
Change Plan. Dry-run a batch of changes, review the exact commands, then apply under Safe Mode.
S3 Backups. Off-device backup archive β upload, list, download, delete.
Backups. Local backup files kept on the MCP host.
Modules. The full tool catalog by module and risk annotation.
Config. Config Studio β edit the config JSON with autocomplete, then safe-apply with auto-rollback.
Memory. Knowledge graph of entities, relations and observations gathered from calls.
What's new. Release notes for the running server version, shown on first launch after an upgrade.
Full reference: docs/observability.md.
The tool catalog
885 tools across 137 modules. Full, always-current reference (parameters + risk per tool) is generated from source: docs/tools-reference.md.
Group | Tools | Modules |
System & Ops | 182 | system, network tools, scheduler/scripts, users, logs, backup, Safe Mode, transactions, rollout, scheduled audits |
Security | 125 | firewall filter, NAT, address-lists, certificates, IP services, hardening, policy-as-code, attack detection |
VPN & Tunneling | 108 | WireGuard, IPsec, PPP, L2TP, PPTP, SSTP, OpenVPN, GRE/IPIP/EoIP/VXLAN |
Dynamic Routing | 99 | router-id, tables, rules, next-hops, filters, BFD, BGP, OSPF, RIP, PIM-SM, IGMP proxy, GMP, RPKI |
IPv6 | 90 | addressing, DHCPv6, ND, neighbours, pools, routes, firewall filter/NAT/mangle/raw |
Tools | 67 | ping, traceroute, bandwidth test, sniffer, traffic generator, RoMON, Wake-on-LAN, SMS |
Addressing & Routing | 62 | IP addresses, IP pools, routing, DHCP, DNS |
Interfaces | 56 | interfaces, VLAN, bridge, wireless, PoE |
AAA | 34 | RADIUS, User Manager, 802.1X |
QoS | 23 | queue types, queue trees, simple queues |
Switch | 18 | switch settings, ports, rules, port isolation |
Discovery & Meta | 9 | tool gateway (find/describe/invoke), server pulse, capability probe |
Memory | 9 | persistent knowledge graph |
Beyond the catalog
Higher-level workflows built on top of the per-scope tools:
Change Plan & Dry-Run β preview commands as a terraform-style plan, apply under Safe Mode, show the exact
/exportdiff, commit only if still reachable.Cross-Device Transactions β coordinate Safe Mode across several routers: prepare, verify while still uncommitted, then commit everywhere or roll back everywhere.
Staged Fleet Rollout β apply one change as canary β wave β fleet with a health gate and soak between waves, reverting everything already changed on the first failure.
Scheduled Audits β run the auditors on a cron with nobody in the loop and alert only on what changed since the previous run: new, worsened, resolved.
Config Narrative β turn a router's configuration into a plain-language architecture document with a topology diagram, and explain what the difference between two snapshots actually means.
Attack Detection β watch the fleet's logs for brute force, credential spraying and a login that succeeded after failures, correlate them into incidents with evidence, and block the source reversibly when you ask.
Config Snapshots β store
/exportsnapshots and time-travel diff any two, or one against the live device.Firewall Audit β find shadowed, broad, missing-default-drop, duplicate and dead rules, risk-scored, with one-click fixes.
Security Hardening β per-category audit+remediate pairs; audits read-only, fixes dry-run + snapshot + Safe-Mode first.
Policy-as-Code β write your own compliance rules in YAML and lint a config snapshot offline; Markdown/JSON/SARIF, read-only, CI-able.
Offline Simulator β trace a hypothetical packet through NAT, routing and firewall against a snapshot; reports UNKNOWN rather than guessing.
Traffic Flow β NetFlow/IPFIX collection and continuous top-talker / conversation / application analytics; flow metadata only, no payload.
Port-Scan Detection Β· Packet Capture Studio Β· Discovery Β· Config Studio.
Built-in prompts
MCP prompts are one-click guided workflows β authored as Markdown in
prompts/, so you can edit or add your own without touching code:
harden-router Β· diagnose-connectivity Β· setup-guest-wifi Β·
choose-vpn-solution Β· setup-wireguard-vpn Β· setup-ipsec-site-to-site Β·
setup-l2tp-ipsec-roadwarrior Β· setup-tunnel-between-sites Β· backup-and-document
See docs/prompts.md.
Transports
Transport | When | Run |
stdio (default) | Claude Desktop, local MCP clients |
|
streamable-http | Remote / shared, behind a proxy |
|
sse | Legacy HTTP clients |
|
HTTP transports expose POST /mcp and GET /health with DNS-rebinding protection. See
docs/transports.md.
Configuration
Settings come from MIKROTIK_* env vars or matching CLI flags (defaults β env β flags):
Variable | Flag | Default | Purpose |
|
|
| RouterOS host |
|
|
| SSH user |
|
| β | SSH password (or use a key β) |
|
| β | SSH private-key file path |
|
| β | Passphrase for an encrypted key |
|
| β | SSH bastion to tunnel through |
|
| β | JSON file of named devices |
|
| β | Inline JSON of named devices |
|
|
|
|
|
|
| SSH connection pooling |
|
|
| Real-time observability dashboard |
Full table (HTTP host, allow-lists, timeouts, dashboard options, MIKROTIK_LOG_LEVEL):
docs/configuration.md.
Documentation
Doc | |
Install, verify, first run | |
Every env var & flag | |
What a router supports; how tools are gated on it | |
Rules that reach out β Slack, Discord, ntfy, webhook, MCP | |
Manage several routers; per-call targeting | |
Claude Desktop, stdio, HTTP | |
Real-time dashboard: live feed + analytics, SQLite | |
Transactional changes | |
Two-phase commit across several routers | |
Canary β wave β fleet with health gates and auto-revert | |
Preview commands, apply with the exact diff + auto-rollback | |
NetFlow/IPFIX collection + top-talker analytics | |
Live attack incidents from logs; guarded, timed blocking | |
Shadowed/broad/dead rules, risk-scored | |
Per-category audit+remediate, snapshot + Safe-Mode | |
Auditors on a cron, alerting only on run-over-run changes | |
Your own YAML compliance rules, linted offline β SARIF | |
Config β architecture doc + Mermaid; consequence-level diffs | |
Trace a packet through firewall + routing, no device | |
Every tunnel type + how to build it | |
The 9 guided workflows | |
How it's built Β· credentials & risk gating | |
The full generated catalog | |
Build, test, deploy |
Security
Talks to RouterOS over SSH using credentials you supply; nothing is sent anywhere else. Tool values are quoted/escaped to prevent console-command injection. Destructive tools are annotated so clients can require confirmation. Details: docs/security.md. Only point this at devices you're authorized to manage.
License
MIT. Reuse freely. No warranty.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA bridge between AI assistants and MikroTik RouterOS devices, allowing natural language interaction to manage network configurations including VLANs, firewalls, DNS settings, and more.1MIT
- AlicenseAqualityAmaintenanceProduction-grade MCP server for MikroTik RouterOS with secure AI-native network automation.10023146MIT
- AlicenseCqualityAmaintenanceProvides a bridge between AI assistants and MikroTik RouterOS devices, enabling natural language management of VLANs, firewall rules, DNS settings, and more.100245MIT
- Alicense-qualityDmaintenanceEnables management of MikroTik routers running RouterOS 6 and 7 via SSH, Telnet, or API with automatic command adaptation. Provides over 46 MCP tools for device management, firewall, DHCP, VPN, configuration profiles, and more.3MIT
Related MCP Connectors
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors β no code.
Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.
65+ AI tools as MCP: research, write, code, scrape, translate, RAG, agent memory, workflows
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikrotik-mcp/mikrotik-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server