VPS_deactivateFirewallV1
Deactivate firewall protection on a specified virtual machine using its Firewall ID and Virtual Machine ID. This tool is part of the Hostinger MCP server for managing hosting infrastructure.
Instructions
Deactivate a firewall for a specified virtual machine.
Use this endpoint to remove firewall protection from VPS instances.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| firewallId | Yes | Firewall ID | |
| virtualMachineId | Yes | Virtual Machine ID |
Implementation Reference
- types.d.ts:1395-1411 (schema)TypeScript type definition for the 'VPS_deactivateFirewallV1' tool schema, specifying input parameters 'firewallId' (number) and 'virtualMachineId' (number), and generic 'any' response.* Deactivate a firewall for a specified virtual machine. Use this endpoint to remove firewall protection from VPS instances. */ "VPS_deactivateFirewallV1": { params: { /** * Firewall ID */ firewallId: number; /** * Virtual Machine ID */ virtualMachineId: number; }; response: any; // Response structure will depend on the API };