Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
2.1 KiB
2.1 KiB
Site Manager MCP Server
Model Context Protocol (MCP) server for Ubiquiti UniFi Site Manager Cloud API management.
Features
- MCP integration for AI assistants (Claude Desktop, etc.)
- Access to Site Manager Cloud API endpoints
- Tools for managing hosts, sites, devices, metrics, and SD-WAN configurations
- Type-safe API interactions
Installation
pnpm install
pnpm build
Configuration
Create a ~/.env file with:
SITE_MANAGER_API_KEY=your-api-key-here
SITE_MANAGER_BASE_URL=https://api.ui.com/v1 # Optional
Usage
Starting the Server
pnpm start
Development Mode
pnpm dev
Available Tools
The server provides the following MCP tools:
site_manager_list_hosts- List all hostssite_manager_list_sites- List all sitessite_manager_list_devices- List all devicessite_manager_get_isp_metrics- Get ISP metricssite_manager_list_sdwan_configs- List SD-WAN configurationssite_manager_get_sdwan_config- Get SD-WAN configuration by IDsite_manager_get_sdwan_config_status- Get SD-WAN configuration status by ID
Claude Desktop Integration
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"site-manager": {
"command": "node",
"args": [
"/path/to/proxmox/mcp-site-manager/dist/index.js"
],
"env": {
"SITE_MANAGER_API_KEY": "your-api-key-here"
}
}
}
}
Or use environment variables from ~/.env:
{
"mcpServers": {
"site-manager": {
"command": "node",
"args": [
"/path/to/proxmox/mcp-site-manager/dist/index.js"
]
}
}
}
Getting an API Key
- Sign in to the UniFi Site Manager at unifi.ui.com
- Navigate to the API section from the left navigation bar
- Select "Create API Key"
- Copy the generated key and store it securely
Documentation
License
MIT