Files
mcp-proxmox/package.json
gilby125 d534c5e24e Add Proxmox MCP server with configurable permissions
- Node.js implementation matching other MCP servers
- Configurable permission levels via PROXMOX_ALLOW_ELEVATED
- Basic mode: node listing, VM status, cluster overview
- Elevated mode: detailed metrics, command execution
- Environment variable loading from .env file
2025-06-05 14:31:32 -05:00

19 lines
490 B
JSON

{
"name": "mcp-proxmox-server",
"version": "1.0.0",
"description": "MCP server for Proxmox virtualization management",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"node-fetch": "^3.3.2",
"https": "^1.0.0"
},
"keywords": ["mcp", "proxmox", "virtualization", "vm", "devops"],
"author": "Dev Server Setup",
"license": "MIT"
}