KMS Tools is an all-in-one KMS toolbox built with the Nuxt 4 full-stack framework. It integrates KMS activation script generation, KMS server detection, and KMS server status monitoring.
Note
This project relies on Node.js child_process module to invoke vlmcs binaries for KMS detection. It cannot run on pure static hosting platforms like GitHub Pages, so it provides both a full-stack version and a static version.
- 🔑 KMS Activation Script Generation - One-click generation of KMS activation scripts for Windows / Windows Server / Office
- 🔍 KMS Server Check - Real-time detection of KMS server availability and response time
- 📊 KMS Server Monitoring - Continuous monitoring of multiple KMS servers with visual charts
- 🌍 Internationalization - Support for Simplified Chinese and English
- 🌗 Dark Mode - Light / Dark / System theme modes
- 🐳 Docker Deployment - Ready-to-use Docker images for AMD64 and ARM64 architectures
| KMS Activation Script | KMS Server Check | KMS Server Monitoring |
|---|---|---|
![]() |
![]() |
![]() |
The static version uses https://kms.ikxin.com API by default. You can deploy your own full-stack version and set the NUXT_PUBLIC_API_URL environment variable.
| Platform | Demo URL |
|---|---|
| Vercel | https://kms-tools.vercel.app |
| Cloudflare | https://kmstools.pages.dev |
| Netlify | https://kms-tools.netlify.app |
| Technology | Description |
|---|---|
| Nuxt | Full-stack web application framework based on Vue.js |
| Vue.js | Progressive JavaScript framework |
| Nitro | High-performance web server framework based on unjs/h3 |
| Vite | Fast dev server and modern build tool |
| TypeScript | JavaScript superset with type system |
| Tailwind CSS | Utility-first CSS framework |
| Arco Design Vue | Enterprise-level design system by ByteDance |
| ECharts | Feature-rich interactive charting library |
| VueUse | Collection of essential Composition API utilities |
| Nuxt I18n | Internationalization plugin for Nuxt |
| Name | Example | Description |
|---|---|---|
NUXT_PUBLIC_API_URL |
https://kms.ikxin.com |
API URL for the static version |
NUXT_MONITOR_LIST |
kms.org.cn,win.freekms.cn |
Custom KMS server monitoring list, separated by , |
NUXT_MONITOR_INTERVAL |
10 |
Monitoring interval in seconds, default is 10 |
PORT |
3000 |
Server listening port (also accepts NITRO_PORT) |
Note
The production server (node .output/server/index.mjs) does not automatically load .env files. Environment variables must be set in the system environment or your deployment platform before starting the server. The .env file is only used during development and the build phase.
Using Docker Compose:
services:
kms-tools:
image: ikxin/kms-tools:latest
container_name: kms-tools
ports:
- 3000:3000
- 1688:1688
volumes:
- kms-data:/app/.data
environment:
- NUXT_MONITOR_LIST=kms.org.cn,win.freekms.cn
restart: unless-stopped
volumes:
kms-data:Or using Docker CLI:
docker run -d \
--name kms-tools \
-p 3000:3000 \
-p 1688:1688 \
-v kms-data:/app/.data \
ikxin/kms-tools:latestThe image is also available from GitHub Container Registry:
docker pull ghcr.io/ikxin/kms-tools:latest- Clone the repository and install dependencies
git clone https://github.com/ikxin/kms-tools.git
cd kms-tools && pnpm install- Build the project
pnpm run build- Start the service (default port:
3000), configurable via thePORTenvironment variable
node .output/server/index.mjsTo set a custom port and monitor list, pass environment variables at startup:
PORT=3512 NUXT_MONITOR_LIST=kms.example.com node .output/server/index.mjsMost SaaS platforms support static website hosting. Here's the general approach:
Warning
If using Cloudflare Pages, set NODE_VERSION to 22 to avoid build errors.
- Fork this repository to your GitHub account
- Create a project on the SaaS platform and select the forked repository
- Set the build command to
pnpm run generate - Set the environment variable
NUXT_PUBLIC_API_URL=https://kms.ikxin.com - Deploy the project
Note
If you encounter issues deploying on other SaaS platforms, please submit an Issue.
# Clone the project
git clone https://github.com/ikxin/kms-tools.git
cd kms-tools
# Install dependencies
pnpm install
# Start development server
pnpm run dev
# Build for production
pnpm run build
# Generate static version
pnpm run generateContributions of all kinds are welcome! Please read the Contributing Guide first.
- Fork this repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'feat: add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
CDN acceleration and security protection for this project are sponsored by Tencent EdgeOne.
This project is licensed under the MIT License.
Code with ❤️ by 一纸忘忧



