{
  "$schema": "https://modelcontextprotocol.io/schema/server-card.json",
  "serverInfo": {
    "name": "authlx-mcp-server",
    "version": "1.0.0",
    "description": "AuthLX Model Context Protocol (MCP) server providing authentication, licensing, and HWID management capabilities."
  },
  "name": "authlx-mcp-server",
  "version": "1.0.0",
  "description": "AuthLX Model Context Protocol (MCP) server providing authentication, licensing, and HWID management capabilities.",
  "endpoint": "https://api.authlx.com/mcp",
  "transport": {
    "type": "sse",
    "url": "https://api.authlx.com/mcp/sse"
  },
  "capabilities": {
    "tools": {
      "listChanged": true
    },
    "resources": {
      "subscribe": true,
      "listChanged": true
    },
    "prompts": {
      "listChanged": true
    }
  },
  "tools": [
    {
      "name": "verify_session",
      "description": "Verify an AuthLX user session token",
      "inputSchema": {
        "type": "object",
        "properties": {
          "token": {
            "type": "string",
            "description": "User session token"
          }
        },
        "required": [
          "token"
        ]
      }
    },
    {
      "name": "validate_license",
      "description": "Validate and check active status of an AuthLX license key",
      "inputSchema": {
        "type": "object",
        "properties": {
          "license_key": {
            "type": "string",
            "description": "AuthLX license key"
          },
          "hwid": {
            "type": "string",
            "description": "Client hardware fingerprint"
          }
        },
        "required": [
          "license_key"
        ]
      }
    }
  ]
}
