Skip to main content
Glama

delete_firewall_rule

Removes a firewall rule by ID from a 1Panel server. Use it to eliminate outdated or unwanted rules.

Instructions

Delete firewall rule

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.3/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 behavioral burden, yet it discloses nothing beyond the mutation verb. It does not say whether the deletion is irreversible, whether a confirmation or force flag exists, what permissions are required, or what happens to rules that reference this one.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

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

A single short sentence with zero padding, so there is no wasted text and the operation is front-loaded. But it is under-specified rather than genuinely concise, delivering no information beyond the name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive operation with no annotations, no output schema, and 0% parameter coverage, the description is far too thin. An agent has no basis for knowing the id format, the irreversibility of the action, or how the call relates to its sibling tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the single parameter 'id' is undocumented in both schema and description. The description does not say whether id is the numeric rule ID, how to obtain it, or whether it refers to a list index versus a database identifier.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a clear verb and resource ('Delete' + 'firewall rule'), so an agent knows the general operation. However, it is essentially a restatement of the tool name and does nothing to distinguish it from siblings like create_firewall_rule or list_firewall_rules beyond what the name already conveys.

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?

There is no when-to-use guidance, no prerequisite conditions, and no reference to alternatives such as list_firewall_rules (to find the id) or create_firewall_rule. The agent gets no routing help.

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