Ruckus Virtual SmartZone MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_PORT | No | Port for SSE transport (default '8081'). | 8081 |
| VSZ_PASSWORD | Yes | Password for the Ruckus vSZ controller API. | |
| VSZ_USERNAME | Yes | Username for the Ruckus vSZ controller API. | |
| MCP_TRANSPORT | No | Transport protocol for MCP (default 'stdio'). | stdio |
| VSZ_VERIFY_SSL | No | Whether to verify SSL certificates (default 'false'). | false |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| vsz_get_system_infoB | Get vSZ controller system information (version, model, uptime). |
| vsz_get_system_summaryA | Get system summary with AP count, client count and zone statistics. |
| vsz_get_system_inventoryA | Get system inventory with per-zone AP and client statistics. |
| vsz_get_cluster_stateB | Get cluster state including node status and roles. |
| vsz_get_controller_listA | List all controllers in the cluster. |
| vsz_list_zonesA | List all zones configured on the vSZ controller. |
| vsz_get_zoneA | Get detailed information about a specific zone. |
| vsz_create_zoneB | Create a new zone on the vSZ controller. |
| vsz_update_zoneA | Update an existing zone's configuration. |
| vsz_delete_zoneB | Delete a zone from the vSZ controller. |
| vsz_list_zone_ap_groupsA | List AP groups configured in a specific zone. |
| vsz_list_apsA | List all access points managed by the vSZ controller. |
| vsz_get_apB | Get configuration details of a specific access point. |
| vsz_get_ap_operationalA | Get operational information of an AP (uptime, clients, status). |
| vsz_update_apB | Update access point configuration. |
| vsz_delete_apA | Remove an access point from vSZ management. |
| vsz_reboot_apA | Reboot an access point. |
| vsz_list_ap_mesh_neighborsB | Get mesh neighbor APs discovered by an AP (mesh topology). |
| vsz_list_ap_lldp_neighborsA | Get LLDP neighbor devices discovered by an AP (switches, phones, etc.). |
| vsz_get_ap_radioA | Get radio configuration of an AP (2.4G / 5G / 6G). |
| vsz_query_apsA | Query access points with filters. |
| vsz_list_wlansA | List all WLANs in a zone. |
| vsz_get_wlanB | Get WLAN configuration details. |
| vsz_create_wlanA | Create a new WLAN in a zone. |
| vsz_update_wlanA | Update WLAN configuration. |
| vsz_delete_wlanA | Delete a WLAN from a zone. |
| vsz_enable_disable_wlanA | Enable or disable a WLAN. |
| vsz_list_clientsA | List currently connected wireless clients. |
| vsz_get_clientA | Get details of a specific wireless client by MAC address. |
| vsz_disconnect_clientA | Disconnect (deauthenticate) a wireless client. |
| vsz_query_clientsA | Query wireless clients with advanced filters. |
| vsz_list_alarmsA | List active alarms on the vSZ controller. |
| vsz_get_alarmA | Get details of a specific alarm. |
| vsz_acknowledge_alarmB | Acknowledge an active alarm. |
| vsz_clear_alarmC | Clear (dismiss) an alarm. |
| vsz_list_domainsA | List all administration domains. |
| vsz_get_domainA | Get details of a specific domain. |
| vsz_create_domainA | Create a new administration domain. |
| vsz_list_auth_serversA | List all authentication (AAA) servers. |
| vsz_get_auth_serverA | Get details of a specific authentication server. |
| vsz_test_aaaA | Test AAA server connectivity. |
| vsz_list_dhcp_poolsA | List DHCP pools configured in a zone. |
| vsz_get_dhcp_poolA | Get details of a specific DHCP pool. |
| vsz_list_vlan_poolsA | List VLAN pooling profiles. |
| vsz_get_vlan_poolA | Get details of a specific VLAN pool. |
| vsz_queryA | Run a generic vSZ query with optional filters. |
| vsz_get_ap_statisticsB | Get traffic statistics for a specific AP. |
| vsz_get_wlan_statisticsA | Get statistics for WLANs via the query API. |
| vsz_list_blocked_clientsB | List all blocked (blacklisted) clients. |
| vsz_block_clientB | Block (blacklist) a wireless client by MAC address. |
| vsz_unblock_clientA | Unblock (remove from blacklist) a client. |
| vsz_list_rogue_apsA | List detected rogue access points. |
| vsz_mark_rogueA | Mark or classify a rogue AP. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 53 tools
Most tools are clearly separated by resource type and action (e.g., vsz_list_aps vs vsz_get_ap vs vsz_update_ap). Minor potential confusion exists between vsz_get_system_info, vsz_get_system_summary, and vsz_get_system_inventory, which all provide overlapping system-level overview data, but descriptions help differentiate them.
All tools follow a consistent vsz_verb_noun pattern (e.g., vsz_list_zones, vsz_create_wlan, vsz_delete_ap). Verb choices are predictable (list/get/create/update/delete/reboot/block/unblock), making the API easy to navigate.
53 tools is a large surface for a network management server, stretching beyond the typical 15-tool range. However, the domain is broad (APs, WLANs, zones, clients, alarms, AAA, DHCP, etc.), so the count is defensible, but it feels heavy and may overwhelm agents.
The server covers major CRUD operations for zones, WLANs, APs, and domains, plus operational actions like reboot, block, and acknowledge. Notable gaps include missing update/delete for DHCP pools and auth servers, and no create/update for AP groups or VLAN pools, but the core workflows are well covered.