Skip to main content
Glama

Netmon (demo)

device_list

Read-onlyIdempotent

List monitored devices. Wraps GET /api/devices (permission: devices); user's tag-scope is enforced server-side.

Filters (all optional, combinable):

  • tag: tag slug, e.g. "snmp-up" or "switches". Slug is the stable lowercase-hyphen form; tag names with spaces won't match.

  • status: "up" or "down" (based on latest ping).

  • search: substring match on label + ip_address (case-insensitive).

Relation flags (all default false — opt in only what you need to keep the response small): tags, alerts, ping, oids, walks, interfaces, ports, disks.

Pagination: per_page defaults to 25 (max 200), page defaults to 1. meta.pagination.has_more tells you whether more pages exist.

Example: device_list({tag: "snmp-up", per_page: 10})

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNoFilter by tag slug (stable hyphenated form, e.g. "snmp-up"). Empty returns everything.
oidsNoInclude oids relation on each device row (default false).
pageNo1-indexed page number (default 1).
pingNoInclude ping relation on each device row (default false).
tagsNoInclude tags relation on each device row (default false).
disksNoInclude disks relation on each device row (default false).
portsNoInclude ports relation on each device row (default false).
walksNoInclude walks relation on each device row (default false).
alertsNoInclude alerts relation on each device row (default false).
searchNoSubstring match on label or ip_address (case-insensitive).
statusNoFilter by latest ping status: "up" or "down".
per_pageNoRows per page (default 25, max 200). Start small — call again with page=2 if has_more is true.
interfacesNoInclude interfaces relation on each device row (default false).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds crucial context beyond these: the required permission, server-side tag-scope enforcement, opt-in relation flags to control response size, and pagination with has_more. 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?

The description is well-structured with clear sections: purpose, filters, relation flags, pagination, and an example. It is concise despite covering many parameters, using bullet points to avoid verbosity. The example is illustrative and the whole is easily scannable.

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?

Despite 13 optional parameters and no output schema, the description explains every aspect needed for correct invocation: filter options, relation flags, pagination mechanics, and permission requirements. It also hints at response shape via meta.pagination.has_more. For a read-only listing tool, this is comprehensive.

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 100%, so baseline is 3. The description adds meaning beyond the schema by explaining tag slugs (stable hyphenated form vs spaces), status based on latest ping, search being case-insensitive substring over label+ip, pagination defaults (25, max 200) and the has_more indicator, plus a concrete usage example. This goes well beyond what the schema provides.

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 states a specific verb (List) and resource (monitored devices), and adds the HTTP endpoint and permission. It is clearly distinct from sibling tools like device_get (specific device) or device_find (search) by focusing on listing with filters and relations.

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 gives detailed usage instructions including optional filters, relation flags, and pagination behavior, but does not explicitly name when to use this tool versus alternatives like device_get or device_find. The context strongly implies listing vs. lookup, but an explicit exclusion would be stronger.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.