Skip to main content

Hostinger Get Tool Usage

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READhostinger.get_tool_usage
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: hostinger-2026.07.12.1
  • Descriptor hash: 2d1d07f70a58ae9d470a2e386dbe01edf8c329139c067e3e2740b0a887f419c4

Use this tool to retrieve one complete, lossless descriptor by native name, canonical name, or supported alias. 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 one complete lossless Hostinger ToolManifest descriptor by native name, canonical name, or alias.

Request Body

{
"jsonrpc": "2.0",
"id": "hostinger-get-tool-usage-example",
"method": "tools/call",
"params": {
"name": "hostinger.get_tool_usage",
"arguments": {
"tool_name": "tool_name_example"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"tool_name"
],
"properties": {
"tool_name": {
"type": "string",
"description": "Hostinger native tool name, hostinger.tool canonical name, or supported alias."
}
},
"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-tool-usage-example",
"method": "tools/call",
"params": {
"name": "hostinger.get_tool_usage",
"arguments": {
"tool_name": "tool_name_example"
}
}
}'

Example Responses

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