PluginBench
MCP Server

io.github.marcelo-ochoa/mikrotik MCP Server

io.github.marcelo-ochoa/mikrotik

What is the io.github.marcelo-ochoa/mikrotik MCP server?

MCP server for MikroTik RouterOS API

How to install io.github.marcelo-ochoa/mikrotik

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • MK_USER

    MikroTik username

  • MK_PASSWORD
    secret

    MikroTik password

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mikrotik": {
      "command": "npx",
      "args": [
        "-y",
        "@marcelo-ochoa/server-mikrotik",
        "host"
      ],
      "env": {
        "MK_USER": "<YOUR_MK_USER>",
        "MK_PASSWORD": "<YOUR_MK_PASSWORD>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mikrotik": {
      "command": "npx",
      "args": [
        "-y",
        "@marcelo-ochoa/server-mikrotik",
        "host"
      ],
      "env": {
        "MK_USER": "<YOUR_MK_USER>",
        "MK_PASSWORD": "<YOUR_MK_PASSWORD>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mikrotik": {
      "command": "npx",
      "args": [
        "-y",
        "@marcelo-ochoa/server-mikrotik",
        "host"
      ],
      "env": {
        "MK_USER": "<YOUR_MK_USER>",
        "MK_PASSWORD": "<YOUR_MK_PASSWORD>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mikrotik": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@marcelo-ochoa/server-mikrotik",
        "host"
      ],
      "env": {
        "MK_USER": "<YOUR_MK_USER>",
        "MK_PASSWORD": "<YOUR_MK_PASSWORD>"
      }
    }
  }
}
Claude Code
claude mcp add mikrotik --env MK_USER=<YOUR_MK_USER> --env MK_PASSWORD=<YOUR_MK_PASSWORD> -- npx -y @marcelo-ochoa/server-mikrotik host

Related MCP servers

An MCP server for MySQL databases.

View repository →

MCP server for interacting with Oracle databases

View repository →

MCP server for interacting with PostgreSQL databases

View repository →