Skip to main content
Glama
WLAN-Pi
by WLAN-Pi

get_ufw_status

Check the current UFW firewall status and list active rules on a WLAN Pi to verify firewall configuration.

Instructions

Get the current UFW firewall status and active rules on the WLAN Pi.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the behavioral burden. It states that it gets status and rules, implying a read-only operation, but it does not explicitly disclose safety (no side effects), permissions required, or any potential impact. For a simple status query this is a minor gap, but the description is minimal.

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?

A single, focused sentence that directly states what the tool does. There is no fluff, and it is front-loaded with the action and resource. Perfectly concise for the tool's simplicity.

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 has no parameters and an output schema exists, the description does not need to explain return values. It fully covers the purpose for a simple status query. It might optionally mention the output format, but the output schema handles that, so nothing critical is missing.

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 tool has zero parameters, and the schema coverage is 100% (trivially, since there are no properties). The baseline for zero parameters is 4, and the description correctly implies no arguments are needed. There is nothing more to add.

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 ('Get') and resource ('UFW firewall status and active rules'). It clearly distinguishes this from sibling tools like get_service_status or get_device_info by naming the exact firewall component being queried. No ambiguity.

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 context is clear: it's a read-only status query for UFW. There is no explicit alternative mentioned, but among the siblings there is no other UFW-specific tool, so the intended usage is self-evident. It doesn't state exclusions, but for a simple status getter that is acceptable.

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