Files
virtfusion-mcp/package.json
Andrew 40d5e8161a
All checks were successful
Endpoint Sync Check / check-drift (push) Successful in 20s
CI / build (push) Successful in 26s
feat: initial implementation of VirtFusion MCP server
Complete MCP server wrapping all 84 VirtFusion Admin API endpoints:
- Core HTTP client with Bearer auth and error handling
- 17 tool modules organized by API category
- Endpoint drift detection scripts and Gitea Actions CI/CD
- Comprehensive README with configuration examples
- CLAUDE.md for AI assistant onboarding

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 23:34:48 -04:00

44 lines
1.0 KiB
JSON

{
"name": "@ezscale/virtfusion-mcp",
"version": "1.0.0",
"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"
},
"scripts": {
"build": "tsc",
"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"
}
}