Skip to main content
Glama
shigechika

io.github.shigechika/aruba-central-mcp

by shigechika

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.

Documentation: https://shigechika.github.io/aruba-central-mcp/

Features

Access Points

Tool

Description

list_aps

List all access points (with optional site/status filter)

list_radios

List AP radios (channel, utilization, noise floor, TX power)

list_bssids

List all BSSIDs

list_wlans

List WLANs (SSID, security, VLAN)

list_swarms

List AP swarms/clusters

get_ap_status

Get detailed status of a specific AP

get_ap_throughput

Get AP throughput trend (TX/RX over time)

get_top_aps

Top APs by bandwidth usage (wireless/wired/total)

Clients

Tool

Description

list_clients

List connected wireless clients (with optional SSID/band filter)

find_client_by_mac

Find a client by MAC address (direct API lookup)

get_clients_trend

Client count trend over time

get_top_clients_by_usage

Top clients by bandwidth usage

get_client_mobility_trail

Client roaming history

Infrastructure

Tool

Description

list_switches

List all switches

get_site_summary

Aggregated site-level summary (AP counts, client counts)

health_check

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 mcp SDK + httpx (no pandas)

Related MCP server: wlanpi-mcp

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-mcp

Or run without installing:

uvx aruba-central-mcp

From 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

ARUBA_CENTRAL_BASE_URL

API gateway URL

apigw-uswest4.central.arubanetworks.com

ARUBA_CENTRAL_CLIENT_ID

OAuth2 client ID

xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

ARUBA_CENTRAL_CLIENT_SECRET

OAuth2 client secret

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

How to obtain API credentials

  1. Log in to HPE GreenLake Platform

  2. Go to Manage Workspace > Personal API clients

  3. Click Create Personal API client

  4. Enter a nickname and select Aruba Central as the service

  5. Copy the client_id and client_secretthe secret is shown only once

For details, see:

Usage

Claude Code (plugin)

This repository doubles as a single-plugin marketplace, so Claude Code can install the server for you:

/plugin marketplace add shigechika/aruba-central-mcp
/plugin install aruba-central-mcp@aruba-central-mcp

The plugin launches uvx aruba-central-mcp and reads the same three environment variables described in Configuration; export them before starting Claude Code.

uvx must be on the PATH of the process that runs Claude Code — a login shell usually has it, but a GUI-launched app may not; install uv system-wide if the plugin fails to start.

Claude Code (manual)

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-mcp

Or 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_mcp

CLI 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 -v

Live 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 --traceback
  • Read-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.py is 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

MIT

Available Tools

17 tools
daily_briefA

Run a morning AP health check across all sites.

Fetches all access points and aggregates their online/offline status by site. Sites whose offline AP ratio is strictly greater than offline_threshold percent are flagged as WARNING (uses >, so a site with exactly offline_threshold % offline is still OK).

Args: offline_threshold: Percentage of offline APs that triggers a WARNING (default 10.0). Sites at or below this threshold appear in the OK section. Pass 0.0 to flag any site with at least one offline AP.

Output tiers:

  • CRITICAL — API connection failure

  • WARNING — offline AP ratio strictly above threshold

  • OK — offline ratio at or below threshold

Returns a Markdown summary with site-level AP counts and anomaly details.

ParametersJSON Schema
NameRequiredDescriptionDefault
offline_thresholdNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden. It explains the strict threshold logic, output tiers (CRITICAL, WARNING, OK), and return format (Markdown). It does not mention side effects, but as a read-only aggregate, no destructive behavior is expected. Missing explicit read-only declaration, but sufficient transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections for args and output tiers. It is front-loaded with purpose and provides necessary detail without excess. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter, output schema present), the description covers purpose, parameter semantics, output tiers, and return format. It is complete for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so description must explain the parameter. It does so thoroughly: defines offline_threshold, default 10.0, explains the '>' comparison, and gives example 0.0. No other parameters exist, so full coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool runs a morning AP health check across all sites, specifying verb and resource. It distinguishes from siblings like 'health_check' (likely broader) and 'list_aps' (no aggregation). Output tiers further clarify purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for routine health checks, but lacks explicit instructions on when to use versus siblings. However, the context of 'morning health check' and aggregated output provides clear usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

find_client_by_macA

Look up a single client by MAC address (wireless or wired).

Returns detailed info including OS, manufacturer, VLAN, and connection status. Uses direct API lookup (no full-list scan).

Args: mac_address: Client MAC address (e.g. "aa:bb:cc:dd:ee:ff").

ParametersJSON Schema
NameRequiredDescriptionDefault
mac_addressYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description bears full burden. It details return fields (OS, manufacturer, VLAN, connection status) and performance characteristic (direct lookup). Lacks discussion of errors or side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Extremely concise: three lines plus a single-param args section. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-lookup tool with output schema, description covers input format, return details, and performance. Lacks error handling info but sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Only one parameter with schema showing type string and title. Description provides example format 'aa:bb:cc:dd:ee:ff', adding meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states 'Look up a single client by MAC address', specifying verb and resource. Differentiates from siblings like list_clients and get_client_mobility_trail.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly mentions 'direct API lookup (no full-list scan)', implying efficiency for single client lookups. Could add when not to use or alternatives, but enough context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_ap_statusB

Get detailed status of a specific access point by name.

Args: ap_name: AP device name (case-insensitive).

ParametersJSON Schema
NameRequiredDescriptionDefault
ap_nameYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, and the description only states a read operation. It lacks disclosure of potential side effects, permissions, rate limits, or error handling (e.g., if AP not found).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with a one-line summary and a minimal Args section. Every sentence adds value, and the structure is clean.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simplicity of the tool (one parameter, output schema exists), the description is adequate but omits details like what fields are returned in the detailed status or behavior for invalid names.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The Args section adds the detail that ap_name is case-insensitive, which goes beyond the schema's type-only definition. This is valuable context for correct invocation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get detailed status of a specific access point by name,' specifying a distinct verb and resource. While it implicitly differs from sibling tools like list_aps and get_ap_throughput, it does not explicitly differentiate them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, when not to use, or comparisons with sibling tools such as list_aps or get_ap_throughput.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_ap_throughputA

Get throughput trend for a specific AP as a time-series table.

Returns timestamped TX/RX throughput in bps. Defaults to last 3 hours.

Args: serial_number: AP serial number (use list_aps or get_ap_status to find it). interface_type: "WIRELESS" (Wi-Fi), "WIRED" (Ethernet uplink), or "LTE". start_at: Start time in RFC 3339 format. Defaults to 3 hours ago. end_at: End time in RFC 3339 format. Defaults to current time.

ParametersJSON Schema
NameRequiredDescriptionDefault
end_atNo
start_atNo
serial_numberYes
interface_typeNoWIRELESS

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full behavioral burden. It states it returns timestamped throughput in bps and defaults to last 3 hours, but does not mention error handling, auth requirements, or impact. Adequate but not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is concise with a clear function statement followed by structured args. Every sentence provides useful information without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema, the description need not detail return values, but it does mention timestamped TX/RX throughput. It covers all parameters and defaults. Lacks error case handling but overall complete for a read-only data tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Despite 0% schema description coverage, the description adds detailed semantics for each parameter: serial_number lookup guidance, interface_type enum values, and start_at/end_at defaults (schema shows empty strings). Adds significant value beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves throughput trend for a specific AP as a time-series table with TX/RX throughput in bps. It distinguishes from sibling tools like get_clients_trend or get_ap_status by focusing on AP throughput.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for AP throughput data and gives prerequisite guidance (use list_aps or get_ap_status for serial number), but does not explicitly state when to use this tool versus alternatives or exclude other scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_client_mobility_trailA

Get roaming history for a wireless client as a time-series table.

Shows which APs the client connected to, when, and on which SSID. Useful for troubleshooting connectivity issues or tracking movement. Defaults to last 3 hours.

Args: mac_address: Client MAC address (e.g. "aa:bb:cc:dd:ee:ff"). start_at: Start time in RFC 3339 format. Defaults to 3 hours ago. end_at: End time in RFC 3339 format. Defaults to current time.

ParametersJSON Schema
NameRequiredDescriptionDefault
end_atNo
start_atNo
mac_addressYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, but the description clarifies behavior: returns time-series table with APs, times, SSIDs; defaults to last 3 hours. Does not mention errors or limits, but is reasonably transparent for a read operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Concise with a clear heading, brief summary, and structured Args section. A minor redundancy in the first two sentences, but overall efficient and well-organized.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema, the description adequately covers purpose, usage, and parameters. It lacks mention of error handling or client existence, but is sufficient for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description carries full burden. The Args section provides clear, format-specific explanations for each parameter (MAC address format, RFC 3339 for times, and defaults), adding significant value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it retrieves roaming history for a wireless client as a time-series table, specifying AP, time, and SSID. Distinct from sibling tools like find_client_by_mac (current location) or get_clients_trend (aggregate trends).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states it is useful for troubleshooting connectivity issues or tracking movement, providing context. Does not explicitly mention alternatives or when not to use, but the context is clear enough for an agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_clients_trendA

Get client count trend over time, grouped by a chosen dimension.

Useful for capacity planning and usage pattern analysis.

Args: site_id: Filter by site ID. Empty for all. site_name: Filter by site name. Empty for all. start_at: Start time in RFC 3339 format (max 1 month range). Must not be in the future. end_at: End time in RFC 3339 format. Must not be in the future. group_by: Dimension to group by. Supported values: - Any client_type: TYPE, ROLE, VLAN - WIRELESS only: WLAN, RADIO, SECURITY, PROTOCOL Default is TYPE. client_type: Client category: ALL, WIRELESS, or WIRED. Default is ALL. Must be WIRELESS when group_by is WLAN, RADIO, SECURITY, or PROTOCOL (the API returns 400 otherwise).

ParametersJSON Schema
NameRequiredDescriptionDefault
end_atNo
site_idNo
group_byNoTYPE
start_atNo
site_nameNo
client_typeNoALL

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It explains constraints (max 1 month range, no future dates), dependencies between group_by and client_type, and that the API returns 400 on mismatch. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with a clear first sentence, a usage note, and detailed parameter list. It's not overly concise but each part serves a purpose and is easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema, return values are not needed. The description covers all input parameters, constraints, and error conditions (API 400). It is complete for agent decision-making.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, but the description fully explains all 6 parameters: filter semantics, time format, group_by options, client_type constraints, and default values. This significantly adds meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get client count trend over time, grouped by a chosen dimension' which is a specific verb+resource. It distinguishes from sibling tools like list_clients or get_top_clients_by_usage by focusing on trends over time.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description mentions it's 'Useful for capacity planning and usage pattern analysis', giving context for when to use. It does not explicitly exclude alternatives, but the purpose is clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_site_summaryA

Get a summary of all sites with AP and client counts.

Aggregates data across all APs and clients, grouped by site name. Shows total APs, online/offline counts, and client count per site.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses that data is aggregated across all APs and clients, grouped by site, and shows specific counts. However, it does not mention auth needs, rate limits, or return format (but output schema exists). No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three short sentences, all essential. The first sentence immediately conveys the purpose, making it front-loaded and efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters, output schema, and a clear description of aggregation and counts, the description is largely complete. It could mention that all sites are returned (no filtering), but that is implicit.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the baseline for this dimension is 4. The description adds no additional param info, which is acceptable since none exist.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns a summary of all sites with AP and client counts. It uses specific verbs ('Get', 'aggregates', 'shows') and distinguishes from sibling tools like list_aps by focusing on site-level aggregation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for high-level site overview, but does not explicitly state when to use it vs. siblings like list_aps or daily_brief. No exclusions or alternatives are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_top_apsA

Get top access points ranked by bandwidth usage over a time range.

Returns a ranked list of APs sorted by descending bandwidth consumption.

Args: usage_type: "wireless" (Wi-Fi traffic), "wired" (uplink traffic), or "total" (wireless + wired combined). Default: "total". site_id: Filter by site ID. Empty for all sites. limit: Maximum number of APs to return (1-25, default 10). start_at: Start time in RFC 3339 format (e.g. "2025-01-01T00:00:00Z"). Max 30 days range. Defaults to 24 hours ago if omitted. end_at: End time in RFC 3339 format. Defaults to current time if omitted.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
end_atNo
site_idNo
start_atNo
usage_typeNototal

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, description discloses ranking behavior, time window constraints, and defaults. Does not mention output format but output schema exists. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with purpose, then clear bullet points for each parameter. No redundant sentences; efficient and readable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 5 params, no required ones, and output schema present, description covers all key aspects: sorting, time constraints, defaults, filtering. Complete for selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 0% description coverage; description explains all 5 parameters with details (enum options for usage_type, range for limit, format for dates). Adds significant value beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear statement 'Get top access points ranked by bandwidth usage over a time range' with specific verb+resource. Distinguishes from siblings like list_aps (all APs) and get_top_clients_by_usage (clients).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description provides usage context (time range, ranking by bandwidth) and parameter guidance, but lacks explicit when-to-use vs alternatives. Implicit differentiation from sibling tools is adequate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_top_clients_by_usageA

Get top clients ranked by bandwidth usage.

Args: site_id: Filter by site ID. Empty for all. site_name: Filter by site name. Empty for all. start_at: Start time in RFC 3339 format (max 1 month range). end_at: End time in RFC 3339 format. limit: Maximum number of clients to return (1-100, default 5).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
end_atNo
site_idNo
start_atNo
site_nameNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses constraints like max 1-month range for start_at and limit range (1-100). However, no annotations exist, so description should also note idempotency, performance, or side effects; it only covers parameter behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Structure is clean with an Args list. Each parameter is explained briefly. No unnecessary words, though the first line could be more concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, the description covers all 5 parameters with constraints. Output exists but not described, though not required. Sufficient for a ranking tool with moderate complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 0% description coverage, but the description provides clear explanations for each parameter (filtering, time format, default limit). Adds value beyond schema structure.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the tool gets top clients ranked by bandwidth usage. Distinguishes from siblings like list_clients (general listing) and get_clients_trend (trend analysis).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool vs alternatives like list_clients or get_clients_trend. The description only explains parameters but lacks when/not usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

health_checkA

Report server version and Aruba Central backend authentication.

Call this at session start (or after a tool-call timeout) to confirm the MCP is up, see which version is running, and verify the Aruba Central backend can be authenticated. Lightweight: it builds the client and obtains an OAuth2 access token (GreenLake SSO, reusing the cached token) — it does NOT fetch APs, switches, clients, or any other data endpoint.

Always returns the same keys: status (healthy / degraded / error), service, version, base_url (the configured ARUBA_CENTRAL_BASE_URL, empty string if unset), and auth (ok / error / missing-env). On a degraded or error result, detail carries the reason.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It fully discloses that the tool builds a client, obtains an OAuth2 access token (with caching), and is lightweight. It also details the return keys including behavior on degraded/error results. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured: a clear header sentence, usage guidance, a note about lightweightness, explicit exclusions, and return format. Every sentence contributes value. Slightly verbose with backticks and code formatting, but not excessive.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no parameters and no output schema, the description completely covers its behavior, return values, and when to use it. It also addresses potential edge cases (degraded/error) and provides example keys. No gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, and the input schema is empty with 100% coverage. The description does not need to add parameter information, and it correctly focuses on the tool's purpose and behavior. The baseline for 0 parameters is 4, but the description adds value by explaining what the tool does without needing parameter details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly defines the tool as reporting server version and Aruba Central backend authentication. It uses specific verbs ('report', 'confirm', 'verify') and resource ('server version', 'backend authentication'). The tool distinguishes itself from sibling tools that fetch APs, switches, etc., by explicitly stating it does not fetch those endpoints.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance on when to use the tool: at session start or after a tool-call timeout. It also explains what it confirms (MCP up, version, backend auth) and what it does NOT do (fetch data endpoints), helping the agent avoid misuse. While it doesn't name alternatives, the context and sibling tools make the use case clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_apsA

List access points with device-level overview.

Use this for AP inventory and availability checks. For RF details (channel, utilization, noise floor), use list_radios instead.

Args: site: Filter by site name (exact match, server-side). Empty for all. status: Filter by status (e.g. "ONLINE", "OFFLINE"). Empty for all.

ParametersJSON Schema
NameRequiredDescriptionDefault
siteNo
statusNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so description carries the burden. It describes the tool as listing APs with an overview, implying a read-only operation. While not explicitly stating safety, the nature of a list operation is transparent enough. Could add explicit 'read-only' but not required for this case.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise: three clearly separated paragraphs covering purpose, usage guideline, and parameter details. Every sentence earns its place with no fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with 2 optional parameters and an existing output schema. The description covers purpose, usage context, and parameter semantics sufficiently for correct agent invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 0% description coverage, but the description fully covers both parameters: 'site' (exact match, server-side, empty for all) and 'status' (examples like ONLINE/OFFLINE, empty for all). This adds significant meaning beyond the schema field names and defaults.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it lists access points with a device-level overview. It distinguishes itself from the sibling 'list_radios' by specifying that 'list_aps' is for inventory and availability, while 'list_radios' covers RF details.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly tells when to use ('AP inventory and availability checks') and when not to use, directing to 'list_radios' for RF details. This provides unambiguous guidance for agent selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_bssidsA

List all BSSIDs (per-radio, per-SSID broadcast identifiers).

Useful for identifying which radio on which AP is broadcasting a specific SSID. Each AP radio broadcasts one BSSID per WLAN.

Args: site: Filter by site name (exact match, server-side). Empty for all.

ParametersJSON Schema
NameRequiredDescriptionDefault
siteNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It describes a read-only listing operation with no side effects, and the filtering behavior is transparent. However, it does not explicitly state that it is non-destructive, which would be helpful.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise: two sentences for the purpose and one sentence for the parameter. It is front-loaded with the key purpose and no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple tool with only one parameter and an output schema (presumably covering return values), the description is fairly complete. It explains the resource and filtering. However, it does not detail the response fields, though that may be acceptable with an output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description fully compensates by explaining the 'site' parameter: 'Filter by site name (exact match, server-side). Empty for all.' This adds clear meaning beyond the schema's type and default.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List all BSSIDs (per-radio, per-SSID broadcast identifiers)', which is specific and distinguishes it from sibling tools like list_radios or list_wlans. It explains the purpose and the relationship to radios and WLANs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a use case ('useful for identifying which radio on which AP is broadcasting a specific SSID') but does not explicitly mention when not to use it or alternatives. Agents could infer usage, but explicit guidance is missing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_clientsA

List connected wireless clients with connection details.

Returns client name, MAC, IP, SSID, band, SNR, connected AP, and auth type. For a single client's full details, use find_client_by_mac instead.

Args: ssid: Filter by SSID name (exact match, server-side). Empty for all. band: Filter by wireless band (exact match, server-side). Empty for all.

ParametersJSON Schema
NameRequiredDescriptionDefault
bandNo
ssidNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It states it lists connected wireless clients with details but lacks information on pagination, rate limits, or whether it returns real-time data. Adequate for a read operation but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is brief and front-loaded with purpose, then lists returned fields and parameters. Somewhat sparse but no wasted words. Could benefit from a bit more structure, but effective.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (2 optional parameters, output schema exists), the description covers purpose, return fields, filters, and sibling alternative. Missing details like result ordering or scope, but sufficient for selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but description adds full meaning: each parameter's purpose (filter by SSID/band), match type (exact match, server-side), and default behavior (empty for all). Compensates completely.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists connected wireless clients with connection details, using specific verb 'List' and resource 'clients'. It distinguishes from sibling 'find_client_by_mac' by noting that tool is for full details of a single client.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly tells when to use this tool (list all clients with filters) and when not (for single client full details, use find_client_by_mac). Also explains behavior of empty filter parameters.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_radiosA

List AP radios with RF details.

Use this for RF troubleshooting: channel assignment, channel utilization, noise floor, and TX power. Each AP typically has 2-3 radios (one per band).

Args: site: Filter by site name (exact match, server-side). Empty for all. band: Filter by band (e.g. "2.4 GHz", "5 GHz"). Empty for all.

ParametersJSON Schema
NameRequiredDescriptionDefault
bandNo
siteNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses only basic behavior: listing radios with RF details and filtering. No mention of pagination, rate limits, authentication, or error handling.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is efficient: 4 lines of main text and 3 lines for Args. No redundant words, and key information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers purpose and parameters well. Output schema exists, so return values don't need detail. Behavioral transparency is lacking, but for a list tool with two optional params, the description is mostly complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The Args block explains both parameters (site: exact match, server-side; band: e.g., '2.4 GHz', '5 GHz'), adding meaning beyond the schema which has no descriptions. This compensates for the 0% schema description coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List AP radios with RF details' and specifies the RF details (channel assignment, utilization, noise floor, TX power). It distinguishes this tool from siblings like list_aps by focusing on radio-level data, but does not explicitly contrast with them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says 'Use this for RF troubleshooting', providing a clear use case. However, it does not specify when to avoid this tool or suggest alternatives (e.g., list_aps for AP-level info).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_swarmsA

List all AP swarms (clusters) from Aruba Central.

Returns cluster name, conductor AP, site, IP, and firmware version.

Args: site: Filter by site name (exact match, server-side). Empty for all.

ParametersJSON Schema
NameRequiredDescriptionDefault
siteNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses that it is a listing operation, returns specific fields, and describes the site filter as exact match and server-side. No annotation coverage, so description carries the burden well.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences plus an Args line, no wasted words, front-loaded with purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists, the description covers operation, parameter, and return fields adequately for a simple list tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description explains the 'site' parameter's default and behavior (exact match, server-side, empty for all), adding value beyond the bare schema definition.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List all AP swarms (clusters) from Aruba Central', specifying the verb, resource, and scope. It also lists return fields, distinguishing it from sibling tools like list_aps.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives like list_aps. The purpose is implied but not explicitly contrasted.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_switchesB

List all switches from Aruba Central.

Returns switch name, status, model, type, IP, firmware, and MAC address.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description must fully disclose behavior. It states it returns specific fields but omits any behavioral traits such as pagination, rate limits, authentication requirements, or potential error conditions. This leaves significant gaps in understanding.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise, using only two sentences without any wasted words. It directly states the action and key returned fields, efficiently communicating the tool's core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (no parameters, straightforward list operation) and the existence of an output schema, the description is nearly complete. However, it could briefly mention that it returns all switches without filters, which is implied but not explicit.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters, and schema coverage is 100%, so the baseline is 3. The description does not need to add parameter information, but it also does not discuss the absence of parameters (e.g., no filters). This is adequate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it lists all switches from Aruba Central, explicitly identifying the resource and system. It distinguishes itself from sibling list tools (e.g., list_aps, list_clients) by specifying 'switches'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With many sibling tools like list_aps, list_clients, etc., the absence of any usage context or exclusions limits its helpfulness for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_wlansA

List configured WLANs (SSIDs) with security and VLAN settings.

Shows each WLAN's name, band, operational status, security level, and VLAN assignment.

Args: site_id: Filter by site ID. Empty for all. serial_number: Filter by AP serial number. Empty for all.

ParametersJSON Schema
NameRequiredDescriptionDefault
site_idNo
serial_numberNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. Describes it as a read-only list operation and explicitly names output fields. Does not mention potential side effects or limitations, but for a simple list tool this is sufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is concise: one sentence for purpose, one for output fields, then a clean Args section. No redundant information; every part earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity and the presence of an output schema, the description covers the core functionality and parameter usage adequately. Minor omission: could mention that it returns a list, but the purpose implies this.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema descriptions are absent (0% coverage), but the description fully explains each parameter's meaning and behavior (empty string as 'all'). This adds significant value beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool lists configured WLANs (SSIDs) and specifies the fields shown (name, band, status, security, VLAN). It distinguishes from sibling tools like list_aps or list_bssids by focusing on WLAN configuration details.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides parameter usage instructions (site_id and serial_number filters) but lacks explicit when-to-use or when-not-to-use guidance relative to alternatives. Relies on implicit context from the tool name.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 11 tool updatesv0.6.2
    • Addeddaily_brief
    • Addedfind_client_by_mac
    • Addedget_ap_throughput
    • Addedget_client_mobility_trail
    • Addedget_clients_trend
    • Addedget_top_aps
    • Addedget_top_clients_by_usage
    • Addedlist_bssids
    • Addedlist_radios
    • Addedlist_swarms
    • Addedlist_wlans
  2. 11 tool updatesv0.6.1
    • Removeddaily_brief
    • Removedfind_client_by_mac
    • Removedget_ap_throughput
    • Removedget_client_mobility_trail
    • Removedget_clients_trend
    • Removedget_top_aps
    • Removedget_top_clients_by_usage
    • Removedlist_bssids
    • Removedlist_radios
    • Removedlist_swarms
    • Removedlist_wlans
  3. 1 tool updatev0.1.1
    • Addedhealth_check
  4. 16 tool updatesv0.1.0
    • First observeddaily_brief
    • First observedfind_client_by_mac
    • First observedget_ap_status
    • First observedget_ap_throughput
    • First observedget_client_mobility_trail
    • First observedget_clients_trend
    • First observedget_site_summary
    • First observedget_top_aps
    • First observedget_top_clients_by_usage
    • First observedlist_aps
    • First observedlist_bssids
    • First observedlist_clients
    • First observedlist_radios
    • First observedlist_swarms
    • First observedlist_switches
    • First observedlist_wlans

TDQS

A3.9/5.0

Scored across 17 tools

Disambiguation4/5

Most tools have clearly distinct purposes: list_aps versus get_ap_status, list_clients versus find_client_by_mac, and list_radios versus list_bssids are explicit list-vs-detail or list-vs-lookup contrasts. The only mild overlap is get_site_summary and daily_brief, both aggregating site health, but the descriptions differentiate counts from health status.

Naming Consistency4/5

The naming pattern is largely consistent: list_* for inventory overviews, get_* for details, trends, and rankings, with find_client_by_mac as a clear lookup exception. health_check and daily_brief break the verb_noun pattern but are easily recognized as operational helpers rather than resource operations.

Tool Count4/5

17 tools is slightly above the ideal range but still reasonable for a network-management server covering APs, clients, switches, WLANs, radios, sites, and trends. Each tool maps to a distinct monitoring or troubleshooting need, so the count does not feel padded.

Completeness4/5

The server provides strong read-only coverage of the main Aruba Central resources: AP inventory, radio/RF details, client lookup and trends, WLANs, switches, sites, and throughput analytics. Minor gaps exist, such as no switch detail drill-down and no tool to enumerate site IDs for filtering, but agents can usually work around these with existing data.

Maintenance

ActivityMaintained
ResponsivenessUnresponsive

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    B
    maintenance
    A demo MCP server that connects an AI to external systems by exposing Python functions as tools and data as resources, using the stdio transport.
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    An MCP server that exposes WLAN Pi capabilities like device info, Wi-Fi scanning, service management, and VLANs to AI assistants via the wlanpi-core REST API.
    BSD 3-Clause