MikroTik Cursor MCP

MikroTik Cursor MCP

Enables natural language management of MikroTik routers through Cursor IDE by translating requests into RouterOS commands via API or SSH.

Category
访问服务器

README

MikroTik Cursor MCP

A Model Context Protocol (MCP) server for managing MikroTik routers using natural language in Cursor IDE.

Version License

Based on mikrotik-mcp by @jeff-nasseri


Overview

This MCP server provides a natural language interface to MikroTik RouterOS devices through Cursor IDE. It translates natural language requests into RouterOS commands via the MikroTik API with SSH fallback.

Architecture

  • API-First Design: Uses MikroTik API for fast, structured communication
  • SSH Fallback: Automatically falls back to SSH when API is unavailable
  • Category-Based Tools: Organizes 440+ actions into 19 logical categories
  • Dual Transport: API and SSH support with automatic selection

Quick Start

Installation

cd mikrotik-mcp
python -m venv .venv
.venv\Scripts\activate  # Windows
# or: source .venv/bin/activate  # Linux/Mac
pip install -r requirements.txt

Configure Cursor MCP

Update your Cursor MCP configuration file:

Windows: %APPDATA%\Cursor\User\globalStorage\cursor.mcp\mcp.json
macOS: ~/Library/Application Support/Cursor/User/globalStorage/cursor.mcp/mcp.json
Linux: ~/.config/Cursor/User/globalStorage/cursor.mcp/mcp.json

{
  "mcpServers": {
    "mikrotik-cursor-mcp": {
      "command": "C:\\path\\to\\mikrotik-mcp\\.venv\\Scripts\\python.exe",
      "args": ["C:\\path\\to\\mikrotik-mcp\\src\\mcp_mikrotik\\server.py"],
      "env": {
        "MIKROTIK_HOST": "192.168.88.1",
        "MIKROTIK_USERNAME": "your_username", 
        "MIKROTIK_PASSWORD": "your_password"
      }
    }
  }
}

Test Connection

Restart Cursor and ask: "Show me my router's system information"

For detailed setup instructions, see: SETUP_COMPLETE_GUIDE.md


What Is This?

A production-ready MCP server that enables natural language management of MikroTik routers through Cursor IDE. Instead of memorizing RouterOS commands, describe your intent in plain language.

Example:

"Create a WireGuard VPN tunnel to my AWS EC2 instance at 52.1.2.3"

The server translates this into the necessary RouterOS API calls or SSH commands to generate keys, configure interfaces, set up routes, and create firewall rules.


Features

Available Categories

Category Actions Coverage
Firewall 54 Filter, NAT, Mangle, RAW, Layer 7, Chains, Address Lists, Connections
System 42 Resources, Identity, Packages, Scheduler, Watchdog, Safe Mode
IPv6 43 Addresses, Routes, Firewall, DHCPv6, Neighbor Discovery
Interfaces 53 Physical, Virtual, Bridge, PPPoE, Tunnels, Bonding, VRRP, VLAN
Wireless 39 Interfaces, CAPsMAN, Security Profiles, Access Lists
Routes 33 Static, BGP, OSPF, Routing Filters
Queues 20 Simple, Queue Trees, Traffic Shaping
Container 18 Docker Containers, Images, Networking, Environment
Certificates 11 PKI, CA, SSL/TLS
WireGuard 11 Interfaces, Peers, Keys
Hotspot 10 Servers, Users, Captive Portal
DNS 15 Settings, Static Entries, Cache
OpenVPN 9 Client, Server, Certificates
IP Management 18 Addresses, Pools, Services
DHCP 7 Servers, Pools, Leases
Users 18 Management, Groups, Permissions
Backup 10 Create, Restore, Export
Logs 10 View, Search, Clear
Diagnostics 9 Ping, Traceroute, DNS Lookup, ARP, Neighbors

Total: 440+ actions across 19 categories

Core Capabilities

  • Dual-Stack Networking: Full IPv4 and IPv6 support
  • VPN Suite: WireGuard, OpenVPN, certificate management
  • Dynamic Routing: BGP, OSPF with authentication, route filters
  • Container Support: Docker containers on RouterOS v7.x
  • Advanced Wireless: CAPsMAN centralized management
  • Layer 7 Inspection: Application-aware firewall rules
  • QoS: Queue trees, traffic shaping
  • High Availability: VRRP redundancy
  • Automation: Script scheduler, watchdog monitoring

Installation

Prerequisites

  • Python 3.8+
  • Cursor IDE
  • MikroTik RouterOS device with SSH or API enabled
  • Network access to the router

Setup Steps

# 1. Clone the repository
git clone https://github.com/kevinpez/mikrotik-cursor-mcp.git
cd mikrotik-cursor-mcp

# 2. Create virtual environment
python -m venv .venv

# On Windows:
.venv\Scripts\activate

# On Linux/Mac:
source .venv/bin/activate

# 3. Install dependencies
pip install -r requirements.txt

# 4. Install the package
pip install -e .

Configure Cursor IDE

Add this to your Cursor MCP configuration file (%USERPROFILE%\.cursor\mcp.json on Windows or ~/.cursor/mcp.json on Linux/Mac):

{
  "mcpServers": {
    "mikrotik-cursor-mcp": {
      "command": "python",
      "args": [
        "-m",
        "mcp_mikrotik.server"
      ],
      "cwd": "C:\\Users\\YourUsername\\mikrotik-cursor-mcp",
      "env": {
        "MIKROTIK_HOST": "192.168.88.1",
        "MIKROTIK_USERNAME": "admin",
        "MIKROTIK_PASSWORD": "your-password",
        "MIKROTIK_PORT": "22",
        "MIKROTIK_SSH_KEY": "C:\\Users\\YourUsername\\.ssh\\mikrotik_rsa", 
        "MIKROTIK_STRICT_HOST_KEY_CHECKING": "false",
        "MIKROTIK_KNOWN_HOSTS": "C:\\Users\\YourUsername\\.ssh\\known_hosts",
        "MIKROTIK_CONNECT_TIMEOUT": "10",
        "MIKROTIK_CMD_TIMEOUT": "30"
      }
    }
  }
}

Important: Replace the paths and credentials with your actual values.

Verify Installation

  1. Restart Cursor IDE completely
  2. Open a new Cursor chat
  3. Ask: "List all backups on my MikroTik router"

Usage Examples

Natural Language Commands

Basic Management

"Show me the system resources and uptime"
"List all network interfaces and their status"
"What's in my ARP table?"
"Create a backup called 'before-vpn-setup'"

Firewall & Security

"Create a firewall rule to allow SSH from 10.0.0.0/8"
"Block all traffic from 192.168.99.0/24"
"Show me active connections"
"Create a port forward: external 8080 to internal 192.168.1.100:80"

VPN Setup

"Set up a WireGuard VPN to my AWS server at 52.1.2.3"
"Create an OpenVPN client connection to my office"
"List all WireGuard interfaces and their status"

IPv6 Networking

"Add IPv6 address 2001:db8::1/64 to bridge"
"Enable IPv6 forwarding"
"List IPv6 neighbors"
"Create a DHCPv6 server on bridge interface"

Wireless Management

"List all wireless interfaces"
"Scan for nearby WiFi networks"
"Show connected wireless clients"
"Enable CAPsMAN controller"

Container Management (RouterOS v7.x)

"List all containers"
"Create a container from nginx:latest"
"Show container configuration"
"Create a veth interface for containers"

Dynamic Routing

"List BGP peers"
"Show OSPF neighbors"
"Create a route filter"

Architecture

Category-Based Organization

The MCP uses category-based tools to organize functionality:

Traditional Approach:          This MCP:
├─ mikrotik_list_firewall      ├─ mikrotik_firewall
├─ mikrotik_create_firewall        ├─ list_filter_rules
├─ mikrotik_update_firewall        ├─ create_filter_rule
├─ mikrotik_list_nat               ├─ list_nat_rules
├─ mikrotik_create_nat             └─ ... (54 actions)
├─ mikrotik_port_forward        
... (100+ separate tools)      └─ mikrotik_ipv6 (43 actions)

Technology Stack

  • Python 3.8+ - Core language
  • MCP SDK - Model Context Protocol implementation
  • RouterOS API - Primary communication method
  • Paramiko - SSH fallback connectivity
  • RouterOS CLI - Command execution via SSH

Communication Flow

┌───────────────┐       ┌────────────────────┐       ┌───────────────┐
│  Cursor IDE   │       │   MikroTik MCP     │       │   RouterOS    │
│      + AI     │──────▶│       Server       │──API▶ │    Device     │
└───────────────┘       └────────────────────┘       └───────────────┘
        │                          │                          │
│ Natural language request          │                          │
        │─────────────────────────▶                          │
        │                          │ Parse & translate        │
        │                          │ Execute via API/SSH      │
        │                          ├─────────────────────────▶
        │                          │ Verify results           │
        │                          │◀─────────────────────────│
│ Structured response               │                          │
◀─────────────────────────────────│                          │

Testing

Hardware Validation Suite

The project includes a comprehensive hardware validation suite that tests all handlers against live MikroTik hardware.

# Test all handlers
python tests/hardware_validation.py

# Test specific category with verbose output
python tests/hardware_validation.py --category System -v

# Save test results to JSON
python tests/hardware_validation.py --report results.json

# List available categories
python tests/hardware_validation.py --list-categories

Test Configuration

Create a .env.test file in the project root:

MIKROTIK_HOST=192.168.88.1
MIKROTIK_USERNAME=admin
MIKROTIK_PASSWORD=your_password
MIKROTIK_PORT=22
MIKROTIK_LOG_LEVEL=INFO

Test Categories

The test suite covers all 19 categories:

  • System, Backup, Certificates, Containers
  • DHCP, DNS, Diagnostics
  • Firewall (Filter, NAT, Mangle, RAW)
  • Hotspot, IP Services, IPv6
  • Interfaces, Logs, OpenVPN
  • Queues, Routes, Routing Filters
  • Users, Wireless, WireGuard, CAPsMAN

See TESTING.md for complete testing documentation.


Security Considerations

Credentials

  • Never commit credentials to version control
  • Use environment variables for sensitive data
  • Consider SSH keys instead of passwords

Network Access

  • Ensure secure SSH/API access to router
  • Use firewall rules to restrict management access
  • Enable two-factor authentication if available

Backup Strategy

  • Create backups before major changes
  • Use built-in backup commands
  • Store backups in multiple locations

Testing

  • Test on non-production routers first
  • Use isolated VLANs for experiments
  • Maintain out-of-band access

Troubleshooting

MCP Not Loading

Symptoms: Cursor doesn't recognize MikroTik commands

Solutions:

  1. Verify mcp.json path and format
  2. Check Python path in configuration
  3. Ensure virtual environment is activated
  4. Restart Cursor completely

Connection Issues

Symptoms: "Failed to connect" errors

Solutions:

  1. Verify MIKROTIK_HOST is correct
  2. Check SSH/API is enabled: /ip service print
  3. Test manual SSH: ssh admin@192.168.88.1
  4. Verify firewall rules allow SSH/API

Command Failures

Symptoms: Commands return errors

Solutions:

  1. Check RouterOS version compatibility
  2. Verify required packages are installed
  3. Check user permissions
  4. Review router logs: /log print

Performance Issues

Symptoms: Slow responses

Solutions:

  1. Check network latency to router
  2. Reduce concurrent operations
  3. Verify router has sufficient resources
  4. Update to latest RouterOS version

Contributing

Contributions are welcome.

Reporting Issues

  • Use GitHub Issues
  • Include RouterOS version
  • Provide command examples
  • Share error messages

Feature Requests

  • Check existing requests
  • Describe use case
  • Explain RouterOS capability

Pull Requests

  1. Fork the repository
  2. Create feature branch
  3. Test on live router
  4. Update documentation
  5. Submit PR with clear description

License

MIT License - see LICENSE file


Acknowledgments

  • @jeff-nasseri - Original mikrotik-mcp project
  • @kevinpez - Extended implementation
  • MikroTik - RouterOS platform
  • Anthropic - Claude and MCP protocol
  • Cursor Team - AI-powered IDE

Support


Documentation

Getting Started

User Guides

Development


MikroTik RouterOS automation through natural language

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选