VPS_deleteFirewallRuleV1
Remove a specific firewall rule from a specified firewall using the Hostinger MCP server. Deleting a rule requires manual resync for affected virtual machines.
Instructions
Delete a specific firewall rule from a specified firewall.
Any virtual machine that has this firewall activated will lose sync with the firewall and will have to be synced again manually.
Use this endpoint to remove specific firewall rules.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| firewallId | Yes | Firewall ID | |
| ruleId | Yes | Firewall Rule ID |
Implementation Reference
- types.d.ts:1519-1531 (schema)Schema (TypeScript interface) defining the input parameters (firewallId and ruleId) and response type for the VPS_deleteFirewallRuleV1 tool."VPS_deleteFirewallRuleV1": { params: { /** * Firewall ID */ firewallId: number; /** * Firewall Rule ID */ ruleId: number; }; response: any; // Response structure will depend on the API };