- servers_throttle_cpu: send `percent` instead of `cpuThrottle` in request body to match VirtFusion API spec - servers_delete: enforce minimum 300s (5 min) delay on all deletions as a safety margin to prevent accidental destruction - Bump version to 1.0.1 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "@ezscale/virtfusion-mcp",
|
|
"version": "1.0.1",
|
|
"description": "Model Context Protocol (MCP) server for the VirtFusion virtualization control panel API",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"virtfusion-mcp": "dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepare": "npm run build",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts",
|
|
"extract-endpoints": "tsx scripts/extract-endpoints.ts",
|
|
"check-endpoint-drift": "tsx scripts/check-endpoint-drift.ts"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"virtfusion",
|
|
"virtualization",
|
|
"hosting",
|
|
"model-context-protocol"
|
|
],
|
|
"author": "EZSCALE Hosting, LLC",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.ezscale.cloud/EZSCALE/virtfusion-mcp.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"zod": "^3.25.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"yaml": "^2.7.0"
|
|
}
|
|
}
|