Skip to main content
Glama

list_adapters

Read-onlyIdempotent

Show adapter instances (vCenter, NSX, etc.) with last collection time and staleness status to find which adapter stopped reporting data and when. Diagnose alerts about objects not receiving data.

Instructions

[READ] List Aria Operations adapter instances and when each last collected.

When: an alert such as "Objects are not receiving data", or metrics that stopped updating — this shows which adapter instance (vCenter, NSX, the self-monitoring adapter, ...) stopped collecting and since when. For the collector processes behind them use list_collector_groups; for the Aria node's own memory use get_aria_node_resources.

What: rows with id, name, adapter_kind, resource_kind, collector_id, collector_group_id (null when none), monitoring_interval_min, resources_collected, metrics_collected, last_collected_ms and last_heartbeat_ms with their ages in seconds, message (the adapter's own status text) and stale / stale_basis. stale is true when lastCollected is older than 3 of the adapter's monitoring intervals and at least 15 minutes, false when within that, null when the fields cannot support a verdict. Ages use the appliance clock (reference_clock "appliance") when node status carries it, otherwise this machine's ("local"). The envelope also names stale_adapters and staleness_unknown for the filtered set, and adapter_kinds_present.

Returns a paginated envelope: items, returned, limit, total, truncated, hint, next_offset. GET /adapters is unpaged, so total is exact; pass next_offset back as offset and stop when it is null.

Gotchas: last_collected being recent does not prove every object behind the adapter receives data — it is the instance's last collection cycle. An unrecognised or empty answer is returned as an error, never as no adapters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1-500 (default 100). Out-of-range is rejected.
offsetNoRows to skip; pass the previous response's next_offset.
targetNoAria target name from config; default when omitted.
adapter_kindNoCase-insensitive exact adapter kind key, e.g. "VMWARE" for vCenter. Omit for all.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.15.0

TDQS

A4.9/5.0
Behavior5/5

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

The description adds extensive behavioral context beyond the readOnlyHint/idempotentHint annotations: the stale threshold logic (3 intervals + 15 minutes), the clock references (appliance vs local), pagination semantics (next_offset null termination), and the gotcha that recent last_collected does not prove all objects receive data. It also discloses that empty/unrecognised answers are errors, not empty lists. No contradiction with annotations.

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?

Though lengthy, the description is well-organized into When/What/Gotchas sections and front-loaded with the core purpose. Every sentence earns its place — the field listing compensates for the missing output schema, and the stale and clock explanations are essential. No fluff or redundancy.

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?

With no output schema, the description carries the full burden of explaining return values, and it does so thoroughly: row fields, stale/stale_basis logic, clock references, the paginated envelope with next_offset termination, and error behavior. For a read tool with 4 documented parameters and rich annotations, nothing an agent needs to call it correctly is missing.

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 coverage is 100% and each parameter already has a solid description (limit range, offset pass-through, target config, adapter_kind case-insensitivity). The description reinforces limit/offset usage through the pagination envelope explanation and introduces adapter_kinds_present which helps interpret the adapter_kind parameter. It adds context but doesn't dramatically extend schema semantics.

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 opens with a specific verb+resource pair: 'List Aria Operations adapter instances and when each last collected.' It distinguishes itself from sibling tools like list_collector_groups (collector processes) and get_aria_node_resources (node memory), making its scope unmistakable.

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?

It explicitly names when to use: 'When: an alert such as "Objects are not receiving data", or metrics that stopped updating', and names alternatives: 'For the collector processes behind them use list_collector_groups; for the Aria node's own memory use get_aria_node_resources.' No inference required.

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