Skip to main content
Glama

UniFi UDM Pro MCP Server (unifi-udm-pro-mcp)

CI npm version unifi-udm-pro-mcp MCP server Glama Score License: MIT MCP Protocol Node.js GitHub stars

A high-performance, native Model Context Protocol (MCP) server for Ubiquiti UniFi Dream Machine (UDM / UDM Pro / UDM SE) and UniFi OS Cloud Gateways.

Unlike legacy UniFi MCP implementations that rely on cloud session cookies, username/passwords, or 2FA tokens, this MCP server connects directly to your local UDM Pro REST API using native Local API Keys (X-API-KEY).


Key Features

  • ⚡ Ultra-Low Latency (10–30ms): Direct local LAN communication over HTTPS (https://192.168.1.1).

  • 🔐 100% 2FA-Bypass & Continuous Uptime: Uses native UniFi API Keys. Sessions never expire or prompt for 2FA.

  • 🛠️ 40 Comprehensive Tools: Complete CRUD (Create, Read, Update, Delete) coverage across Wi-Fi, VLANs, Firewall, Port Forwarding, Switch Ports, Guest Vouchers, QoS, and Devices.

  • 🔏 Safe SSL Handling: Natively handles local self-signed SSL certificates without extra environment hacks.

  • 🔒 Privacy-First: 100% local execution. No cloud proxies or external data telemetry.


Related MCP server: mcp-unifi

Available MCP Tools (40 Tools)

1. System & Subsystems

  • unifi_get_sysinfo - UDM Pro console OS version, build, timezone, uptime.

  • unifi_get_health - Subsystem health (WAN 1/2, LAN, WLAN, VPN, ISP speed, CPU/RAM).

  • unifi_list_sites - List all sites managed by controller.

  • unifi_list_events - Recent network events and security logs.

  • unifi_list_alarms - Active security alarms.

  • unifi_run_speedtest - Trigger WAN speed test on UDM Pro gateway.

2. Device Administration

  • unifi_list_devices - Inventory of access points, switches, gateways, IP, MAC, status.

  • unifi_reboot_device - Restart AP, Switch, or Gateway by MAC address.

  • unifi_upgrade_device - Trigger firmware upgrade by MAC address.

  • unifi_locate_device - Flash physical locator LED on AP or Switch.

  • unifi_power_cycle_port - Power cycle PoE switch port by MAC and port index.

3. Client Devices & Control

  • unifi_list_clients - Real-time active clients, IP/MAC, signal, rx/tx bandwidth.

  • unifi_get_all_clients_history - Historical record of all clients ever connected (100+ devices).

  • unifi_set_client_name - Assign custom alias name to client device.

  • unifi_set_client_fixed_ip - Assign static/fixed IP to client device.

  • unifi_set_client_usergroup - Assign QoS bandwidth limit profile to client.

  • unifi_block_client - Block client by MAC address.

  • unifi_unblock_client - Unblock client by MAC address.

  • unifi_reconnect_client - Force client to reconnect to nearest AP.

  • unifi_forget_client - Remove offline client record from database.

4. Wi-Fi / WLAN (Full CRUD)

  • unifi_list_wlans - List SSIDs, WPA passphrases, bands, enabled status.

  • unifi_create_wlan - Create new Wi-Fi network.

  • unifi_update_wlan - Update Wi-Fi settings.

  • unifi_delete_wlan - Delete Wi-Fi network.

  • unifi_set_wlan_password - Instantly change WPA passphrase for SSID.

  • unifi_set_wlan_status - Enable or disable Wi-Fi network on demand.

5. Networks & VLANs (Full CRUD)

  • unifi_list_networks - List subnets, VLANs, gateway IPs, DHCP ranges.

  • unifi_create_network - Create new network subnet / VLAN.

  • unifi_update_network - Update subnet settings.

  • unifi_delete_network - Delete subnet / VLAN.

6. Firewall & Security (Full CRUD)

  • unifi_list_firewall_rules - List active firewall rules.

  • unifi_create_firewall_rule - Create firewall rule (accept/drop/reject).

  • unifi_delete_firewall_rule - Delete firewall rule by ID.

  • unifi_list_firewall_groups - List IP & Port groups.

  • unifi_create_firewall_group - Create IP or Port group.

7. Port Forwarding (Full CRUD)

  • unifi_list_port_forwards - List port forwarding rules.

  • unifi_create_port_forward - Create port forward rule (WAN -> LAN).

  • unifi_delete_port_forward - Delete port forward rule.

8. Hotspot & QoS

  • unifi_list_vouchers - List active guest hotspot vouchers.

  • unifi_create_voucher - Create new guest vouchers by duration/count.

  • unifi_revoke_voucher - Revoke guest voucher.

  • unifi_list_user_groups - List bandwidth limit profiles.

  • unifi_create_user_group - Create bandwidth limit profile (QoS max up/down).


Quick Start

No installation needed:

UNIFI_HOST=https://YOUR_UNIFI_HOST_IP UNIFI_API_KEY=your_key npx unifi-udm-pro-mcp

Option 2: Docker

docker run -e UNIFI_HOST=https://YOUR_UNIFI_HOST_IP -e UNIFI_API_KEY=your_key ghcr.io/rodolfoconcepcion/unifi-udm-pro-mcp

Option 3: Manual Install

git clone https://github.com/rodolfoconcepcion/unifi-udm-pro-mcp.git
cd unifi-udm-pro-mcp
npm install
UNIFI_HOST=https://YOUR_UNIFI_HOST_IP UNIFI_API_KEY=your_key node index.js

Configuration

NOTE

UNIFI_HOST must include the https:// protocol prefix (e.g., https://192.168.0.1). UniFi OS requires HTTPS for local REST API access. Self-signed SSL/TLS certificates on local console IPs are handled automatically.

Claude Desktop / Antigravity

Add to claude_desktop_config.json or Antigravity MCP settings:

{
  "mcpServers": {
    "unifi-udm-pro": {
      "command": "npx",
      "args": ["-y", "unifi-udm-pro-mcp"],
      "env": {
        "UNIFI_HOST": "https://YOUR_UNIFI_HOST_IP",
        "UNIFI_API_KEY": "YOUR_UNIFI_LOCAL_API_KEY"
      }
    }
  }
}

VS Code (GitHub Copilot)

Add to your project's .vscode/mcp.json or user settings:

{
  "servers": {
    "unifi-udm-pro": {
      "command": "npx",
      "args": ["-y", "unifi-udm-pro-mcp"],
      "env": {
        "UNIFI_HOST": "https://YOUR_UNIFI_HOST_IP",
        "UNIFI_API_KEY": "YOUR_UNIFI_LOCAL_API_KEY"
      }
    }
  }
}

Cursor / Windsurf

Add to your MCP settings (Settings → MCP Servers):

{
  "mcpServers": {
    "unifi-udm-pro": {
      "command": "npx",
      "args": ["-y", "unifi-udm-pro-mcp"],
      "env": {
        "UNIFI_HOST": "https://YOUR_UNIFI_HOST_IP",
        "UNIFI_API_KEY": "YOUR_UNIFI_LOCAL_API_KEY"
      }
    }
  }
}

How to Obtain a UniFi API Key

  1. Log into your UniFi OS Console (e.g., https://YOUR_UNIFI_HOST_IP or your UDM IP).

  2. Click Console Settings (gear icon in bottom left) → SystemIntegrations (or Integrations tab).

  3. Under API Key, click Create New API Key.

  4. Copy and save the generated key immediately (it is only displayed once).


Contributing

See CONTRIBUTING.md for guidelines.

Security

See SECURITY.md for vulnerability reporting.

License

MIT License - See LICENSE for details.

Install Server
A
license - permissive license
B
quality
A
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
2Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables comprehensive management of UniFi Network infrastructure through 24 tools for monitoring and controlling devices, clients, wireless networks, security, and guest access. Supports network administration tasks like device restarts, client blocking, WLAN configuration, and backup creation.
    36
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    An MCP server for self-hosted UniFi gateway management, providing tools for devices, networks, WiFi, firewall rules, switch port profiles, connected clients, and a one-shot IoT network creation with rollback.
    20
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A safety-first MCP server for managing UniFi networks, exposing 17 tools for telemetry, diagnostics, and guarded mutations with dry-run previews and confirm requirements.
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server for UniFi Network Controller enabling AI assistants to manage UniFi infrastructure via natural language. It supports firewall rules, IPv6, and uses lazy/eager tool modes to minimize context usage.
    3
    Mozilla Public 2.0

View all related MCP servers

Related MCP Connectors

  • Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.

  • Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.

  • MCP Server for agents to onboard, pay, and provision services autonomously with InFlow

View all MCP Connectors

Latest Blog Posts

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/rodolfoconcepcion/unifi-udm-pro-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server