Skip to main content

Hostinger Hosting List JS Deployments

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READhostinger.hosting_listJsDeployments
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: hostinger-2026.07.12.1
  • Descriptor hash: 8c6976fc8de654f17f2f3b150fa3f2dacc2058d4beb81b284139e6a2fb64e97c

Use this tool to list JavaScript application deployment runs for one Hostinger-hosted domain. 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: List JavaScript application deployments for a Hostinger-hosted domain.

Request Body

{
"jsonrpc": "2.0",
"id": "hostinger-hosting-listjsdeployments-example",
"method": "tools/call",
"params": {
"name": "hostinger.hosting_listJsDeployments",
"arguments": {
"domain": "domain_example",
"page": "",
"states": "",
"perPage": ""
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"domain"
],
"properties": {
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Page number."
},
"domain": {
"type": "string",
"description": "Domain name associated with the hosting account."
},
"states": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Optional deployment state filters: pending, completed, running, failed."
},
"perPage": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Items per page."
}
},
"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-listjsdeployments-example",
"method": "tools/call",
"params": {
"name": "hostinger.hosting_listJsDeployments",
"arguments": {
"domain": "domain_example",
"page": "",
"states": "",
"perPage": ""
}
}
}'

Example Responses

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