Skip to main content
Glama

List Modules

netbox_list_modules
Read-onlyIdempotent

Browse and filter NetBox installed modules with pagination, fuzzy search, and resource-specific filters like device or status. Returns markdown summary or JSON.

Instructions

List installed modules from NetBox.

Supports pagination and filtering. Common patterns:

  • Discovery: call with no filters to browse the first modules.

  • Lookup by id: use netbox_get_module instead when you already have an id.

  • Narrow scan: combine 'q' (fuzzy text) with resource-specific filters below.

Pagination:

  • 'limit' (max 1000, default 50) and 'offset'. Response includes 'has_more' and 'next_offset'.

  • Large list responses auto-truncate to keep under the character limit; keep calling with next_offset to continue.

Resource-specific filters:

  • device_id:

  • module_bay_id:

  • status:

Universal filters:

  • q (string) Fuzzy text search across searchable fields.

  • tag (string[]) AND-filter by tag slugs.

  • created_after (date) ISO-8601 lower bound on 'created'.

  • created_before (date) ISO-8601 upper bound on 'created'.

Returns: Markdown summary (default) or JSON with shape: { total, count, offset, limit, items: [...], has_more, next_offset? }

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qNoFuzzy full-text search across the object's searchable fields (name, description, etc.).
tagNoFilter to objects that have ALL of these tag slugs. Repeat for multiple tags (AND semantics in NetBox).
limitNoMaximum number of items to return per page (1-1000, default 50).
offsetNoNumber of items to skip for pagination. Use next_offset from a previous response.
statusNo
device_idNo
created_afterNoISO-8601 date; only return objects created on or after this date (e.g. 2024-01-01).
module_bay_idNo
created_beforeNoISO-8601 date; only return objects created on or before this date.
response_formatNoOutput format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls.markdown
Behavior4/5

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

Annotations already indicate read-only, idempotent, non-destructive, open-world. The description adds behavioral details beyond annotations: it explains pagination auto-truncation due to character limits, the response format (Markdown default, JSON option), and the shape of the JSON response (total, count, offset, limit, items, has_more, next_offset). This contextualizes the tool's behavior adequately.

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 headings (common patterns, pagination, resource-specific filters, universal filters, returns). Information is front-loaded with the core action and then details. Every sentence adds value—no redundancy or filler.

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 complexity (10 parameters, pagination, various filters, response format choice), the description is nearly complete. It explains pagination mechanics, filter categories, and return format. It covers the response shape even without an output schema. Minor gaps: the resource-specific filters (device_id, module_bay_id, status) lack descriptions, and the description does not mention the maximum limit value explicitly (though it appears in the schema). Overall, it provides sufficient context for an AI agent to use the tool effectively.

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 70% (7 of 10 parameters have descriptions). The description summarizes parameter usage (e.g., pagination, filters) and organizes them into resource-specific and universal categories, which adds some value. However, for parameters like device_id, module_bay_id, and status, the description only lists them without additional meaning beyond the schema's placeholder descriptions. Overall, the description complements the schema but does not significantly enhance parameter semantics beyond what is already present.

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 modules from NetBox with pagination and filtering. It distinguishes itself from netbox_get_module for lookup by id, and provides common patterns (discovery, narrow scan). The verb 'list' and resource 'modules' are specific and unambiguous.

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 provides explicit guidance on when to use this tool vs netbox_get_module (for id lookup). It gives common patterns like discovery and narrow scan with filters. However, it does not explicitly state when not to use the tool or compare to other list tools in the sibling set, though the sibling set includes many list tools for different resources.

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

Install Server

Other Tools

Latest Blog Posts

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/ZenixSolutions/netbox-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server