proxmox-mcps 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -20,7 +20,7 @@ MCP server for [Proxmox VE](https://www.proxmox.com/en/proxmox-ve) — lets AI a
20
20
 
21
21
  **Replication (7)** + **SDN (22)** — ZFS replication jobs · SDN controllers / zones / vnets / subnets + `apply_sdn`
22
22
 
23
- > 25 destructive tools require an approval token (or `PROXMOX_DANGEROUSLY_ALLOW_DESTRUCTIVE=true`). List them: `proxmox-mcp-print-tools destructive`.
23
+ > 25 destructive tools require an approval token (or `PROXMOX_DANGEROUSLY_ALLOW_DESTRUCTIVE=true`). List them: `proxmox-mcps-print-tools destructive`.
24
24
 
25
25
  ## Install
26
26
 
@@ -30,14 +30,14 @@ MCP server for [Proxmox VE](https://www.proxmox.com/en/proxmox-ve) — lets AI a
30
30
  npx proxmox-mcps
31
31
  # or install globally
32
32
  npm install -g proxmox-mcps
33
- proxmox-mcp # CLI binary (installed by the package above)
33
+ proxmox-mcps # CLI binary (installed by the package above)
34
34
  ```
35
35
 
36
36
  ### From source
37
37
 
38
38
  ```bash
39
- git clone https://github.com/your-username/proxmox-mcp.git
40
- cd proxmox-mcp
39
+ git clone https://github.com/your-username/proxmox-mcps.git
40
+ cd proxmox-mcps
41
41
  npm install
42
42
  cp .env.example .env # fill in Proxmox host + API token
43
43
  npm run check-config # validate env
package/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "proxmox-mcps",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server for Proxmox VE — AI-driven QEMU VM and LXC container management",
5
5
  "license": "MIT",
6
6
  "author": "Oliver <ngocdd94@gmail.com>",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/ngocdd/proxmox-mcp.git"
9
+ "url": "git+https://github.com/ngocdd/proxmox-mcps.git"
10
10
  },
11
11
  "bugs": {
12
- "url": "https://github.com/ngocdd/proxmox-mcp/issues"
12
+ "url": "https://github.com/ngocdd/proxmox-mcps/issues"
13
13
  },
14
- "homepage": "https://github.com/ngocdd/proxmox-mcp#readme",
14
+ "homepage": "https://github.com/ngocdd/proxmox-mcps#readme",
15
15
  "type": "module",
16
16
  "bin": {
17
- "proxmox-mcp": "dist/index.js",
18
- "proxmox-mcp-check-config": "dist/cli/check-config.js",
19
- "proxmox-mcp-print-tools": "dist/cli/print-tools.js"
17
+ "proxmox-mcps": "dist/index.js",
18
+ "proxmox-mcps-check-config": "dist/cli/check-config.js",
19
+ "proxmox-mcps-print-tools": "dist/cli/print-tools.js"
20
20
  },
21
21
  "main": "dist/index.js",
22
22
  "files": [