Skip to main content
Glama
rsp2k
by rsp2k

firewall_get_group

Fetch detailed information about a specific firewall group by providing its ID or description, returning the group's current configuration and metadata.

Instructions

Get information about a specific firewall group.

Args: firewall_group_id: The firewall group ID or description (e.g., "web-servers" or UUID)

Returns: Firewall group information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
firewall_group_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations available, the description carries the full burden of behavioral disclosure. It only states 'Get information' and 'Returns: Firewall group information,' which implies a read operation but does not address potential errors, authorization requirements, rate limits, or any side effects. The description adds little 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately brief and front-loaded with the purpose. The Args and Returns sections are clearly separatedhare no extraneous detail; every sentence contributes useful information.

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?

For a simple read operation with one well-documented parameter and an output schema present, the description is largely complete. It covers the key input semantics and return type, but does not mention error cases or how to obtain the group ID beyond the example, which is a minor gap.

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 provides only a bare string type for firewall_group_id with zero description coveragecing the description to compensate. It does so effectively by explaining that the parameter accepts either an ID or a description, with an example ('web-servers' or UUID), giving the agent concrete guidance on valid values.

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 states a clear verb and resource: 'Get information about a specific firewall group.' It distinguishes this from sibling tools like firewall_list_groups by specifying 'specific' and from firewall_get_rule by naming the resource as a group, though it does not explicitly reference those siblings.

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 on when to use this tool versus alternatives such as firewall_list_groups for listing all groups or firewall_get_rule for a specific rule. There is no mention of prerequisites or context in which this tool should be chosen.

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