Skip to main content

Hostinger Get Endpoint Coverage

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READhostinger.get_endpoint_coverage
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: hostinger-2026.07.12.1
  • Descriptor hash: b9c88899213055dc91a042c1bddf9a8acaf05e9e9e496b5ea80fcf3806ae3603

Use this tool to inspect the checked-in Hostinger OpenAPI coverage matrix with bounded tag, risk, and text filters. It is part of the Hostinger MCP agent contract. It never returns Portal grants, Hostinger API tokens, request headers, or raw credential values. Prefer the typed endpoint tools for provider work and use the five unprefixed navigation tools for new discovery flows. The result is a compact Hostinger MCP envelope designed for the next agent action. Runtime summary: Return a bounded section of the checked-in Hostinger OpenAPI endpoint coverage without contacting Hostinger.

Request Body

{
"jsonrpc": "2.0",
"id": "hostinger-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "hostinger.get_endpoint_coverage",
"arguments": {
"tag": "",
"risk": "",
"limit": 1,
"query": ""
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"tag": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional exact provider tag filter."
},
"risk": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional provider risk filter: read, write, spend, credential, or destructive."
},
"limit": {
"type": "integer",
"default": 25,
"description": "Maximum coverage rows to return; minimum 1 and maximum 100."
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional punctuation-normalized multi-token name, path, tag, or summary query."
}
},
"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-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "hostinger.get_endpoint_coverage",
"arguments": {
"tag": "",
"risk": "",
"limit": 1,
"query": ""
}
}
}'

Example Responses

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