VPS_getFirewallListV1
Retrieve and manage all existing firewall configurations to monitor and update security settings on your hosting infrastructure via the Hostinger MCP server.
Instructions
Retrieve all available firewalls.
Use this endpoint to view existing firewall configurations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"description": "Page number",
"type": "integer"
}
},
"required": [],
"type": "object"
}
Implementation Reference
- types.d.ts:1450-1458 (schema)Schema definition for the VPS_getFirewallListV1 tool, defining optional 'page' parameter for pagination and generic response."VPS_getFirewallListV1": { params: { /** * Page number */ page?: number; }; response: any; // Response structure will depend on the API };