Skip to main content
Glama
rsp2k
by rsp2k

lb_list_firewall_rules

List firewall rules associated with a specific load balancer using its ID or name, enabling quick review of network access controls.

Instructions

List firewall rules for a load balancer.

Args: load_balancer_id: The load balancer ID or label (e.g., "web-lb", "api-load-balancer", or UUID)

Returns: List of firewall rules

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
load_balancer_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

B3.1/5.0
Behavior2/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 only states the list action and return type; it does not disclose pagination, ordering, filtering, access requirements, or whether the operation is read-only beyond the verb itself.

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 short, action-first, and organized with clear Args/Returns sections. No filler, though it could add slightly more context without becoming verbose.

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?

For a one-parameter list operation with an output schema, the essential call is covered. However, missing pagination/filtering details and lack of usage differentiation leave minor but noticeable gaps.

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 input schema only says 'string' with 0% description coverage, but the description clarifies that load_balancer_id accepts an ID or label and gives concrete examples ('web-lb', UUID). This adds real meaning beyond the schema.

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?

States the action and resource explicitly: 'List firewall rules for a load balancer.' This clearly distinguishes it from general firewall rule tools, though it does not name sibling alternatives like lb_get_firewall_rule or firewall_list_rules.

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 given on when to use this tool versus alternatives such as lb_get_firewall_rule for a single rule or firewall_list_rules for firewall-group rules. The intended invocation context is implied but never stated.

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