productivity
Hostinger MCP Integration for OpenAI Agents SDK
Connect Hostinger to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Hostinger to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Hostinger MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-hostinger": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=hostinger",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=hostinger --write=deny Why Use KosmoKrator Here
Expose only Hostinger instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Hostinger Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Hostinger integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__hostinger__hostinger_list_servers | hostinger.hostinger_list_servers | Read | List all VPS servers in the Hostinger account. Returns server IDs, names, status, plan, and IP addresses. |
integration__hostinger__hostinger_get_server | hostinger.hostinger_get_server | Read | Get details for a specific Hostinger VPS server by ID. Returns full server information including IP addresses, plan, and status. |
integration__hostinger__hostinger_list_domains | hostinger.hostinger_list_domains | Read | List all domains in the Hostinger account. Returns domain IDs, names, and status. |
integration__hostinger__hostinger_get_domain | hostinger.hostinger_get_domain | Read | Get details for a specific domain in Hostinger by domain ID. Returns full domain information. |
integration__hostinger__hostinger_list_dns_records | hostinger.hostinger_list_dns_records | Read | List DNS records for a specific domain in Hostinger. Returns all record types (A, AAAA, CNAME, MX, TXT, etc.). |
integration__hostinger__hostinger_list_ssl | hostinger.hostinger_list_ssl | Read | List all SSL certificates in the Hostinger account. Returns certificate details including domain, status, and expiry. |
integration__hostinger__hostinger_get_current_user | hostinger.hostinger_get_current_user | Read | Get information about the current authenticated Hostinger account, including email and user details. |