Skip to main content

Hostinger Hostinger Find Tools

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READhostinger.hostinger_find_tools
  • Contract tier: legacy
  • Risk: read
  • Catalog version: hostinger-2026.07.12.1
  • Descriptor hash: 744ea8bee737429516069707c4a95497a5eed32de1f5492f2aa91230fc9c89e4

Use this tool to use the legacy provider-authenticated endpoint-only search retained for existing clients. 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: Search Hostinger tool names, summaries, tags, methods, and paths.

Request Body

{
"jsonrpc": "2.0",
"id": "hostinger-hostinger-find-tools-example",
"method": "tools/call",
"params": {
"name": "hostinger.hostinger_find_tools",
"arguments": {
"query": "query_example",
"max_items": 1
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search text, such as 'vps backup' or 'dns'."
},
"max_items": {
"type": "integer",
"default": 25,
"description": "Maximum matching tools to return."
}
},
"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-hostinger-find-tools-example",
"method": "tools/call",
"params": {
"name": "hostinger.hostinger_find_tools",
"arguments": {
"query": "query_example",
"max_items": 1
}
}
}'

Example Responses

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