VPS_getPostInstallScriptV1
Retrieve a specific post-install script by its ID to view automation details for hosting infrastructure using the Hostinger MCP server.
Instructions
Retrieve post-install script by its ID.
Use this endpoint to view specific automation script details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| postInstallScriptId | Yes | Post-install script ID |
Input Schema (JSON Schema)
{
"properties": {
"postInstallScriptId": {
"description": "Post-install script ID",
"type": "integer"
}
},
"required": [
"postInstallScriptId"
],
"type": "object"
}
Implementation Reference
- types.d.ts:1590-1602 (schema)TypeScript interface definition (schema) for the VPS_getPostInstallScriptV1 API tool, including input parameters and response type.* Retrieve post-install script by its ID. Use this endpoint to view specific automation script details. */ "VPS_getPostInstallScriptV1": { params: { /** * Post-install script ID */ postInstallScriptId: number; }; response: any; // Response structure will depend on the API };