26 lines
1.0 KiB
YAML
26 lines
1.0 KiB
YAML
|
|
name: unifi-network
|
||
|
|
version: "1.0.0"
|
||
|
|
description: UniFi Network MCP server for managing UniFi network devices, clients, and configuration
|
||
|
|
packageName: "unifi-network-mcp"
|
||
|
|
runtime: python
|
||
|
|
transport: STDIO
|
||
|
|
repositoryUrl: https://github.com/sirkirby/unifi-mcp
|
||
|
|
# Health check disabled: STDIO health probe requires packageName (npm-based servers).
|
||
|
|
# This server uses the Python runner. Probe support for Python runner STDIO servers is TODO.
|
||
|
|
env:
|
||
|
|
- name: UNIFI_HOST
|
||
|
|
description: UniFi controller hostname or IP (e.g. unifi.example.com — without https://)
|
||
|
|
required: true
|
||
|
|
- name: UNIFI_USERNAME
|
||
|
|
description: UniFi local admin username
|
||
|
|
required: true
|
||
|
|
- name: UNIFI_PASSWORD
|
||
|
|
description: UniFi admin password
|
||
|
|
required: true
|
||
|
|
- name: UNIFI_NETWORK_PORT
|
||
|
|
description: UniFi controller port (default 443, use 8443 for standalone UniFi Controller)
|
||
|
|
required: false
|
||
|
|
- name: UNIFI_NETWORK_VERIFY_SSL
|
||
|
|
description: Verify SSL certificate (true/false, default true — set false for self-signed certs)
|
||
|
|
required: false
|