io.github.shigechika/aruba-central-mcp
This server provides read-only monitoring capabilities for Aruba Central (HPE GreenLake) wireless network infrastructure via MCP-compatible AI assistants.
Access Point Management
List all APs with optional filtering by site name or status (online/offline)
Get detailed status of a specific AP by name
List AP radios with RF details (channel, utilization, noise floor, TX power)
List all BSSIDs (per-radio, per-SSID broadcast identifiers), optionally filtered by site
List WLANs/SSIDs with security settings and VLAN assignments
List AP swarms/clusters with conductor AP, site, IP, and firmware info
Get AP throughput trend (TX/RX over time for a specific AP)
Get top APs by bandwidth usage (wireless, wired, or total) over a time range
Client Monitoring
List connected wireless clients with optional SSID/band filtering
Find a specific client by MAC address with detailed info (OS, manufacturer, VLAN, etc.)
Get client count trends over time grouped by type, role, VLAN, WLAN, radio, security, or protocol
Get top clients by bandwidth usage over a time range
Get client roaming/mobility history showing AP associations over time
Infrastructure & Switches
List all switches with status, model, IP, firmware, and MAC address
Get site-level summary aggregating AP counts (online/offline) and client counts per site
Health & Diagnostics
Health check to verify server version and Aruba Central OAuth2 authentication
Daily brief to run a morning AP health check across all sites, flagging sites with high offline AP ratios as WARNING or CRITICAL
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@io.github.shigechika/aruba-central-mcplist all access points in site HQ"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
aruba-central-mcp
English | 日本語
MCP server for Aruba Central (GreenLake New Central API).
Exposes access point, switch, and wireless client status to MCP-compatible AI assistants (Claude Code, Claude Desktop, etc.) via STDIO transport.
Features
Access Points
Tool | Description |
| List all access points (with optional site/status filter) |
| List AP radios (channel, utilization, noise floor, TX power) |
| List all BSSIDs |
| List WLANs (SSID, security, VLAN) |
| List AP swarms/clusters |
| Get detailed status of a specific AP |
| Get AP throughput trend (TX/RX over time) |
| Top APs by bandwidth usage (wireless/wired/total) |
Clients
Tool | Description |
| List connected wireless clients (with optional SSID/band filter) |
| Find a client by MAC address (direct API lookup) |
| Client count trend over time |
| Top clients by bandwidth usage |
| Client roaming history |
Infrastructure
Tool | Description |
| List all switches |
| Aggregated site-level summary (AP counts, client counts) |
| Report server version and verify Aruba Central authentication (no data fetch) |
Highlights
Server-side OData filtering for efficient queries
OAuth2 Client Credentials authentication (GreenLake SSO)
Automatic pagination for large result sets
Token auto-refresh before expiration
Lightweight: only
mcpSDK +httpx(no pandas)
Related MCP server: mcp-connector-for-akamai
Prerequisites
Python 3.10+
Aruba Central account with API access (GreenLake New Central API)
OAuth2 client credentials (client ID and secret)
Setup
# uv
uv pip install aruba-central-mcp
# pip
pip install aruba-central-mcpOr run without installing:
uvx aruba-central-mcpFrom source:
git clone https://github.com/shigechika/aruba-central-mcp.git
cd aruba-central-mcp
# uv
uv sync
# pip
pip install -e .Configuration
Set the following environment variables:
Variable | Description | Example |
| API gateway URL |
|
| OAuth2 client ID |
|
| OAuth2 client secret |
|
How to obtain API credentials
Log in to HPE GreenLake Platform
Go to Manage Workspace > Personal API clients
Click Create Personal API client
Enter a nickname and select Aruba Central as the service
Copy the
client_idandclient_secret— the secret is shown only once
For details, see:
Usage
Claude Code
claude mcp add aruba-central \
-e ARUBA_CENTRAL_BASE_URL=apigw-uswest4.central.arubanetworks.com \
-e ARUBA_CENTRAL_CLIENT_ID=your-client-id \
-e ARUBA_CENTRAL_CLIENT_SECRET=your-client-secret \
-- uvx aruba-central-mcpOr add to .mcp.json:
{
"mcpServers": {
"aruba-central": {
"command": "uvx",
"args": ["aruba-central-mcp"],
"env": {
"ARUBA_CENTRAL_BASE_URL": "apigw-uswest4.central.arubanetworks.com",
"ARUBA_CENTRAL_CLIENT_ID": "your-client-id",
"ARUBA_CENTRAL_CLIENT_SECRET": "your-client-secret"
}
}
}
}Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"aruba-central": {
"command": "uvx",
"args": ["aruba-central-mcp"],
"env": {
"ARUBA_CENTRAL_BASE_URL": "apigw-uswest4.central.arubanetworks.com",
"ARUBA_CENTRAL_CLIENT_ID": "your-client-id",
"ARUBA_CENTRAL_CLIENT_SECRET": "your-client-secret"
}
}
}
}Direct execution
export ARUBA_CENTRAL_BASE_URL="apigw-uswest4.central.arubanetworks.com"
export ARUBA_CENTRAL_CLIENT_ID="your-client-id"
export ARUBA_CENTRAL_CLIENT_SECRET="your-client-secret"
python3 -m aruba_central_mcpCLI Options
aruba-central-mcp --version # Print version and exit
aruba-central-mcp --help # Show usage and required environment variables
aruba-central-mcp --check # Verify environment variables and OAuth2 authentication, then exit
aruba-central-mcp # Start MCP server (STDIO, default)With no options, the process runs as an MCP STDIO server (the mode used by MCP clients).
--check exit codes: 0 success, 1 config error, 2 auth error.
Development
git clone https://github.com/shigechika/aruba-central-mcp.git
cd aruba-central-mcp
# uv
uv sync --dev
uv run pytest -v
# pip
python3 -m venv .venv
.venv/bin/pip install -e ".[test]"
.venv/bin/pytest -vLive smoke test
The unit suite mocks Central at the transport layer, which is what makes it
fast — and also what makes it blind to a tool that has stopped returning real
data. scripts/smoke_test.py runs every registered tool against the
configured tenant and fails on empty, malformed or error answers:
# needs the same ARUBA_CENTRAL_* environment variables as the server
uv run python scripts/smoke_test.py
uv run python scripts/smoke_test.py --only radios --tracebackRead-only. Every tool here reads; nothing in Central is configured. A future tool that writes must be listed as state-changing and skipped, and a test enforces that.
No payloads in the report. Tool names, statuses and row counts only; error text is redacted too, since an error routinely quotes the device, client MAC or site it was asked about.
Nothing network-specific in the specs. The AP, the serial number and the client MAC that the per-device tools need are discovered at run time from the listings, and skipped when the network has none to offer. Two tests keep it that way: one refuses those parameters as literals, the other bans anything address-shaped anywhere in the file, because this repository is public.
Empty answers pass for the listings and the time-series tools — a site with no swarms configured is a real deployment — but a lookup handed a name discovered seconds earlier must not come back empty, and those probes say so.
CI enforces the cheap half: a tool registered without a probe spec fails the build (
tests/test_smoke_probes.py), so adding a tool forces the question "how would we know it works?".scripts/smoke_harness.pyis the engine and holds no Central knowledge: it is kept identical across the servers that share it, so fix engine bugs once and sync the file rather than patching this copy.
Its first run found a real one: get_client_mobility_trail was requesting a
page size the endpoint rejects, so the tool had been failing for every client.
API Reference
This server uses the GreenLake New Central API:
/network-monitoring/v1/aps— Access points/network-monitoring/v1/radios— AP radios/network-monitoring/v1/bssids— BSSIDs/network-monitoring/v1/wlans— WLANs/network-monitoring/v1/swarms— AP swarms/clusters/network-monitoring/v1/switches— Switches/network-monitoring/v1/clients— Clients/network-monitoring/v1/clients-trend— Client count trends/network-monitoring/v1/clients-topn-usage— Top clients by usage/network-monitoring/v1/top-aps-by-usage— Top APs by usage
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP (Multi-Agent Conversation Protocol) Server that enables interaction with the At-Work API (api.at-work.biz), allowing agents to communicate with this service through various transport modes like stdio, SSE, and HTTP.Last updated
- AlicenseAqualityDmaintenanceAn unofficial MCP server that connects AI assistants to Akamai APIs, providing tools for edge diagnostics, debugging, and network analysis.Last updated14341MIT
- Alicense-qualityCmaintenanceMCP server for managing devices via JAMF Pro and Microsoft Intune APIs, enabling AI assistants to query and control device management tasks.Last updatedMIT
- Flicense-qualityBmaintenanceA demo MCP server that connects an AI to external systems by exposing Python functions as tools and data as resources, using the stdio transport.Last updated
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/shigechika/aruba-central-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server