Skip to main content
Glama

Device Vlans

device_vlans
Read-onlyIdempotent

Retrieve VLAN configurations for a specific device by hostname or ID, with limit and offset parameters to control pagination.

Instructions

Get VLANs configured on a specific device.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return
offsetNoNumber of results to skip (offset) for pagination
hostnameYesDevice hostname or ID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv1.10.3
    • addedInput schema / properties / limit
      Added value: +{
      +  "default": 100,
      +  "description": "Maximum number of results to return",
      +  "minimum": 1,
      +  "type": "integer"
      +}
    • addedInput schema / properties / offset
      Added value: +{
      +  "default": 0,
      +  "description": "Number of results to skip (offset) for pagination",
      +  "minimum": 0,
      +  "type": "integer"
      +}
  2. First observedv1.9.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and a non-destructive operation, so the description does not contradict them and only needs to add context beyond the annotations. It adds device scoping, but does not disclose pagination behavior, ordering, or any other operational details beyond what the schema and annotations already imply.

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 a single clear sentence with no filler or redundancy. It is appropriately sized for a simple read operation, though it could have added a brief alternative-tool mention without becoming verbose.

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?

Annotations cover the safety profile, the input schema documents all parameters with descriptions, and an output schema exists, so return shape does not need to be explained. The main gap is the lack of explicit positioning relative to 'switching_vlans', but for a low-complexity read tool the description is otherwise sufficient.

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?

Schema description coverage is 100%, so the parameters 'hostname', 'limit', and 'offset' are already documented. The description adds little beyond reinforcing that the operation is device-scoped, which maps to 'hostname'. With full schema coverage, the baseline of 3 is appropriate.

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 uses a concrete verb, 'Get', and a specific resource, 'VLANs configured on a specific device', which clearly conveys the tool's scope. It is slightly generic and does not explicitly differentiate itself from the similar sibling 'switching_vlans', but the 'on a specific device' qualifier gives enough clarity for most selection cases.

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 guidance is provided about when to use this tool versus alternatives such as 'switching_vlans' or other device-scoped list tools. The description implies a use case, but it does not state exclusions, prerequisites, or which sibling tools cover different scopes.

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

Deploy Server

Other Tools