unifi-mcp
Read-only MCP server that surfaces UniFi network data from a UCG-Fiber console to Claude, enabling monitoring of hosts, sites, devices, clients, ISP metrics, and device stats via read-only API tools.
README
unifi-mcp
A lean, read-only MCP server that surfaces
UniFi network data (a UCG-Fiber console) to Claude over stdio. Written against
Ubiquiti's official API key (X-API-KEY); every tool is a GET, so it can only
read — never change — your network.
Tools
| Tool | Returns | API surface |
|---|---|---|
list_hosts |
Consoles on the account (model, IP, firmware, online state) | Site Manager (cloud) |
list_sites |
Sites with device-count statistics | Site Manager (cloud) |
list_devices |
All adopted devices: status, firmware, update state | Site Manager (cloud) |
get_isp_metrics(period, duration) |
WAN health — latency, throughput, packet loss, uptime, per WAN | Site Manager (cloud) |
list_clients(site_id?) |
Connected clients (name, IP, MAC, connection type) | Connector proxy (Owner key) |
get_device_stats(site_id?) |
Live per-device CPU, memory, load, uptime, uplink throughput | Connector proxy (Owner key) |
get_isp_metrics defaults to period="5m", duration="24h"; use period="1h"
with duration="7d"/"30d" for longer windows. The proxy tools default to the
console's local site.
Setup
Requires Python 3.11+ (the system 3.9 is too old for mcp). Uses uv.
cd unifi-mcp
uv venv --python 3.11
uv pip install mcp httpx
Configuration (environment)
UNIFI_API_KEY(required) — your UniFi API key. Create it at unifi.ui.com → profile → API Keys, or locally under UniFi Network → Settings → Control Plane → Integrations.- The proxy tools (
list_clients,clients_per_device,get_device_stats) require an Owner key. The cloud tools work with any key, including a read-only Viewer key.
- The proxy tools (
UNIFI_CONSOLE_ID(required for the proxy tools) — your console's id. Find it as the hostidin the cloudGET /hostsresponse (or runlist_hosts).UNIFI_SITE_ID(required for the proxy tools) — the local site id. Find it asdata[0].idin the proxyGET /sitesresponse (often the "Default" site).
None of these are hardcoded — all are read from the environment at runtime, and
the API key is never logged, committed, or written to disk by this code. The
cloud-only tools (list_hosts, list_sites, list_devices, get_isp_metrics)
need just UNIFI_API_KEY.
Register with Claude Code
claude mcp add unifi --scope user \
-e UNIFI_API_KEY="$UNIFI_API_KEY" \
-e UNIFI_CONSOLE_ID="$UNIFI_CONSOLE_ID" \
-e UNIFI_SITE_ID="$UNIFI_SITE_ID" \
-- /ABS/PATH/unifi-mcp/.venv/bin/python -m unifi_mcp.server
Registering against the absolute venv interpreter (not uv run) keeps cold-start
to a bare exec. --scope user keeps the registration (and the key) out of any
project repo.
Skill: network health
skills/network-health/ is an optional Claude Code skill that turns the tools
into a one-shot health summary — WAN/ISP status, offline devices, pending
firmware updates, and client distribution per AP. Install it by copying the
folder into your skills dir:
cp -r skills/network-health ~/.claude/skills/
Then ask Claude "how's my network?" and it orchestrates the relevant tools.
Tests
Two layers, both runnable without touching production state (everything is a read):
# Offline: projection/envelope logic pinned to real captured payloads (no key)
.venv/bin/python test_projections.py
# Live: exercises the tools against the real API; prints raw-keys -> kept so
# field-name mismatches are visible (needs UNIFI_API_KEY; proxy ops also need
# UNIFI_CONSOLE_ID and UNIFI_SITE_ID)
UNIFI_API_KEY=... UNIFI_CONSOLE_ID=... UNIFI_SITE_ID=... .venv/bin/python smoke_test.py
Design notes
- stdio transport — Claude launches the process on demand; zero idle cost.
- Read-only enforced in code — the HTTP client only ever issues GET (asserted), so the read-only guarantee holds even if Ubiquiti later ships write endpoints.
- Token-efficient — responses are projected down to monitoring-relevant
fields (
projections.py); ISP metrics are summarized per-WAN rather than returned raw. - Two API envelopes — the cloud API uses cursor pagination
(
pageSize/nextToken); the connector proxy uses offset pagination (offset/limit) and some endpoints (e.g.statistics/latest) return a bare object with no envelope.client.pyhandles all three shapes.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。