{
  "$schema": "https://modelcontextprotocol.io/schema/manifest.json",
  "name": "fusionhub-launcher-mcp",
  "displayName": "FusionHub FUSION LAUNCHER MCP Server",
  "description": "First-party Model Context Protocol (MCP) server for FUSION LAUNCHER Minecraft release discovery, operational telemetry, and community multiplayer servers.",
  "version": "2.0.5",
  "homepage": "https://minecraft.fusionhub.in",
  "transport": {
    "type": "http",
    "endpoint": "https://minecraft.fusionhub.in/.well-known/mcp"
  },
  "endpoints": {
    "http": "https://minecraft.fusionhub.in/.well-known/mcp",
    "sse": "https://minecraft.fusionhub.in/.well-known/mcp"
  },
  "tools": [
    {
      "name": "get_launcher_version",
      "description": "Fetch current latest release version, changelog notes, and direct setup installer download URL.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_latest_update",
      "description": "Get latest launcher version, changelog, and direct setup download URL.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "channel": {
            "type": "string",
            "enum": [
              "stable",
              "beta"
            ],
            "default": "stable"
          },
          "platform": {
            "type": "string",
            "enum": [
              "windows",
              "macos",
              "linux"
            ],
            "default": "windows"
          }
        }
      }
    },
    {
      "name": "get_system_status",
      "description": "Check operational health, microservices, and sync status for FUSION Launcher.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "service": {
            "type": "string",
            "enum": [
              "all",
              "cloud_sync",
              "api",
              "updates"
            ],
            "default": "all"
          }
        }
      }
    },
    {
      "name": "get_system_health",
      "description": "Check the health and operational status of FUSION Launcher API and Supabase cloud services.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_community_servers",
      "description": "List verified Minecraft multiplayer community servers registered on FusionHub.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "filter": {
            "type": "string",
            "enum": [
              "all",
              "survival",
              "pvp",
              "creative",
              "minigames"
            ],
            "default": "all"
          },
          "limit": {
            "type": "integer",
            "default": 20
          }
        }
      }
    },
    {
      "name": "get_supported_versions",
      "description": "List supported Minecraft game versions, compatible mod loaders (Fabric, Forge, Quilt), and bundled Java runtimes.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "loader": {
            "type": "string",
            "enum": [
              "all",
              "fabric",
              "forge",
              "quilt",
              "vanilla"
            ],
            "default": "all"
          }
        }
      }
    }
  ]
}