Skip to main content

Hostinger Hosting Show JS Deployment Logs

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READhostinger.hosting_showJsDeploymentLogs
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: hostinger-2026.07.12.1
  • Descriptor hash: 382deb83c2f1ff690abf584cc327fe09dd0ed1c60d5adde0592b115e4f54a949

Use this tool to read a bounded Hostinger JavaScript deployment log from a known build UUID. It reads external Hostinger state without modifying it. It contacts Hostinger using the protected per-request credential and never accepts credentials as tool arguments. Use dry_run when offered to validate local paths and request shape before provider work. Do not use this tool for a different Hostinger account or for content whose local files are unavailable to this container. The result is the compact Hostinger MCP envelope with the affected domain, stable provider identifiers when available, safe status metadata, and a recoverable error without secret values. Runtime summary: Retrieve logs for a Hostinger JavaScript application deployment.

Request Body

{
"jsonrpc": "2.0",
"id": "hostinger-hosting-showjsdeploymentlogs-example",
"method": "tools/call",
"params": {
"name": "hostinger.hosting_showJsDeploymentLogs",
"arguments": {
"domain": "domain_example",
"buildUuid": "buildUuid_123",
"fromLine": 1
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"domain",
"buildUuid"
],
"properties": {
"domain": {
"type": "string",
"description": "Domain name associated with the hosting account."
},
"fromLine": {
"type": "integer",
"default": 0,
"description": "Line offset to start reading logs from."
},
"buildUuid": {
"type": "string",
"description": "JavaScript deployment build UUID."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "True only when the requested Hostinger or local catalog operation succeeded."
},
"data": {
"description": "Normalized result data, or null when the operation failed."
},
"meta": {
"type": "object",
"description": "Safe endpoint, timing, pagination, rate, catalog, and next-action metadata.",
"additionalProperties": true
},
"error": {
"description": "Secret-safe structured error details, or null on success."
}
},
"description": "Normalized Hostinger MCP response envelope.",
"additionalProperties": false
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "hostinger-hosting-showjsdeploymentlogs-example",
"method": "tools/call",
"params": {
"name": "hostinger.hosting_showJsDeploymentLogs",
"arguments": {
"domain": "domain_example",
"buildUuid": "buildUuid_123",
"fromLine": 1
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool hostinger.hosting_showJsDeploymentLogs executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}