Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

MikroTik RouterOS

БесплатноНе проверен

Enables managing MikroTik RouterOS devices via natural language, with read-heavy network inspection and guarded write access across multiple routers.

GitHubEmbed

Описание

Enables managing MikroTik RouterOS devices via natural language, with read-heavy network inspection and guarded write access across multiple routers.

README

MikroTik RouterOS MCP

MikroTik RouterOS MCP

CI License Python 3.12+ 24 MCP Tools

An MCP server for MikroTik RouterOS with a lightweight web dashboard for multi-router management. Exposes 24 MCP tools covering transport fallback (API → API-SSL → SSH), read-heavy network inspection, and guarded write access, while the bundled dashboard provides a simple REST-backed UI for viewing routers and common network state.

Quick start

git clone https://github.com/drohi-r/mikrotik-routeros-mcp && cd mikrotik-routeros-mcp
uv sync

# Configure devices
cp devices.yaml.example devices.yaml   # then edit with your router details

# Run the MCP server
uv run python -m mikrotik_routeros_mcp.server

# Or run the web dashboard
uv run python -m mikrotik_routeros_mcp.dashboard --host 0.0.0.0 --port 8080

The server looks for config in this order: MIKROTIK_ROUTEROS_CONFIG env var → ./devices.yaml./devices.yml./devices.json.

Architecture

graph TD
    A["MikroTik RouterOS MCP Server<br/><code>mikrotik_routeros_mcp</code><br/>24 tools · safety gate"] --> B
    B["Transport Layer<br/>Fallback: API → API-SSL → SSH"] --> C
    C["RouterOS Devices<br/>Named targets from devices.yaml"]

    D["Multi-Device Config<br/>Named routers · tags · per-device write control"] -.-> A
    E["Guarded Write Flow<br/>plan_script_change → apply_script_change"] -.-> A
    F["SSH Fallback<br/>Config export · limited-API environments"] -.-> B

    style A fill:#1a1a2e,stroke:#2196F3,color:#fff
    style B fill:#1a1a2e,stroke:#2196F3,color:#fff
    style C fill:#1a1a2e,stroke:#0f3460,color:#fff
    style D fill:#0f3460,stroke:#0f3460,color:#fff
    style E fill:#0f3460,stroke:#0f3460,color:#fff
    style F fill:#0f3460,stroke:#0f3460,color:#fff

Configuration

Device config example:

devices:
  - name: home
    host: 192.168.88.1
    username: admin
    password: change-me
    transport_order:
      - api
      - api-ssl
      - ssh
    allow_writes: false
    tags:
      - home
      - lab

  - name: office
    host: office-router.example.com
    username: admin
    password: change-me
    fallback_ip: 203.0.113.10
    transport_order:
      - api-ssl
      - ssh
    allow_writes: false
    tags:
      - office
      - production

Tools

Server and discovery

Tool What it does
get_server_config Return current MCP server configuration and safety settings
list_devices List all configured RouterOS devices
describe_device Return detailed info for a named device

System and network reads

Tool What it does
system_info Return system identity, version, uptime, and hardware info
interfaces List all network interfaces with status
ip_addresses List IP addresses assigned to interfaces
routes List the routing table
firewall_filters List firewall filter rules
nat_rules List NAT rules
dns_settings Return DNS configuration
dhcp_servers List DHCP server instances
dhcp_leases List DHCP leases
address_lists List firewall address list entries
bridges List bridge interfaces
bridge_ports List bridge port memberships
neighbors List discovered network neighbors
wireguard_interfaces List WireGuard interfaces
wireguard_peers List WireGuard peers
logs Retrieve system log entries
ping Ping a target from a device
export_config Export device configuration
run_api_print Read-only API print for any RouterOS path

Guarded writes

Tool What it does
plan_script_change Preview a RouterOS script change with risk assessment
apply_script_change Apply a planned script change with approval code

Write access is blocked unless the target device has allow_writes: true. The intended workflow is: plan_script_change → inspect risk level and approval code → apply_script_change only if the plan is acceptable.

Claude Desktop

{
  "mcpServers": {
    "mikrotik-routeros": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/mikrotik-routeros-mcp", "python", "-m", "mikrotik_routeros_mcp.server"],
      "env": {
        "MIKROTIK_ROUTEROS_CONFIG": "/path/to/devices.yaml"
      }
    }
  }
}

VS Code / Cursor

{
  "servers": {
    "mikrotik-routeros": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/mikrotik-routeros-mcp", "python", "-m", "mikrotik_routeros_mcp.server"],
      "env": {
        "MIKROTIK_ROUTEROS_CONFIG": "/path/to/devices.yaml"
      }
    }
  }
}

Codex

Create a codex.json MCP config file:

{
  "mcpServers": {
    "mikrotik-routeros": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/mikrotik-routeros-mcp", "python", "-m", "mikrotik_routeros_mcp.server"],
      "env": {
        "MIKROTIK_ROUTEROS_CONFIG": "/path/to/devices.yaml"
      }
    }
  }
}

Then run Codex with:

codex --mcp-config codex.json

Production safety

  • Device-scoped targeting — the model must choose a named target router explicitly. No ambient "default device" behavior.
  • Write gating — write access is blocked per-device unless allow_writes: true is set in config. Read tools are always available.
  • Guarded write flowplan_script_change returns a risk assessment and approval code. apply_script_change requires that approval code to proceed.
  • Transport fallback — attempts api, then api-ssl, then ssh in order, so the server connects via the best available transport without manual switching.
  • Read-only API guardrun_api_print blocks mutating RouterOS API paths by design.
  • Input validation — all tools validate parameters before any API call is made. Invalid inputs return structured JSON errors, never raw exceptions.

Development

uv sync
uv run python -m pytest -v

License

Apache 2.0

from github.com/drohi-r/mikrotik-routeros-mcp

Установка MikroTik RouterOS

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/drohi-r/mikrotik-routeros-mcp

FAQ

MikroTik RouterOS MCP бесплатный?

Да, MikroTik RouterOS MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для MikroTik RouterOS?

Нет, MikroTik RouterOS работает без API-ключей и переменных окружения.

MikroTik RouterOS — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить MikroTik RouterOS в Claude Desktop, Claude Code или Cursor?

Открой MikroTik RouterOS на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare MikroTik RouterOS with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development