{
  "$schema": "https://w3c.github.io/webmcp/schema/webmcp-tools.json",
  "name": "HytaleServery.com WebMCP",
  "description": "WebMCP nástroje pre AI agentov na HytaleServery.com",
  "version": "1.0",
  "protocol_version": "2026-draft",
  "last_updated": "2026-03-18",
  "provider": {
    "name": "HytaleServery.com",
    "url": "https://hytaleservery.com"
  },

  "tools": [
    {
      "name": "searchServers",
      "description": "Vyhľadať Hytale servery podľa názvu, herného režimu alebo tagov",
      "input_schema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Hľadaný výraz (názov servera, tag, IP)"
          },
          "game_mode": {
            "type": "string",
            "enum": ["survival", "creative", "pvp", "roleplay", "adventure", "minigames"],
            "description": "Filter podľa herného režimu"
          }
        }
      },
      "endpoint": "https://hytaleservery.com/ai/servers.json",
      "method": "GET",
      "response_format": "application/json"
    },
    {
      "name": "getServerDetails",
      "description": "Získať detailné informácie o konkrétnom Hytale serveri",
      "input_schema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string",
            "description": "Slug alebo ID servera"
          }
        },
        "required": ["slug"]
      },
      "endpoint": "https://hytaleservery.com/ai/server/{slug}.txt",
      "method": "GET",
      "response_format": "text/plain"
    },
    {
      "name": "getSiteSummary",
      "description": "Získať súhrnné štatistiky platformy HytaleServery.com",
      "input_schema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "https://hytaleservery.com/ai/summary.json",
      "method": "GET",
      "response_format": "application/json"
    },
    {
      "name": "getFAQ",
      "description": "Získať často kladené otázky a odpovede o platforme",
      "input_schema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "https://hytaleservery.com/ai/faq.json",
      "method": "GET",
      "response_format": "application/json"
    },
    {
      "name": "getFacts",
      "description": "Získať overené fakty o platforme vhodné na citáciu",
      "input_schema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "https://hytaleservery.com/ai/facts.json",
      "method": "GET",
      "response_format": "application/json"
    },
    {
      "name": "getRecruitments",
      "description": "Získať zoznam aktívnych náborov na Hytale servery",
      "input_schema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "https://hytaleservery.com/ai/recruitments.json",
      "method": "GET",
      "response_format": "application/json"
    }
  ],

  "permissions": {
    "requires_authentication": false,
    "rate_limit": "60 requests/minute",
    "human_in_the_loop": false
  }
}
