vme-mcp-server 0.1.3 → 0.1.5
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.
- package/README.md +9 -20
- package/dist/README.md +1 -1
- package/dist/server.js +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
@@ -4,29 +4,21 @@ An intelligent Model Context Protocol (MCP) server that transforms HPE VM Essent
|
|
4
4
|
|
5
5
|
## Quick Start
|
6
6
|
|
7
|
-
###
|
8
|
-
|
9
|
-
- [Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code) installed
|
10
|
-
- Node.js 18+ and npm
|
11
|
-
- Access to an HPE VM Essentials (VME) instance
|
12
|
-
|
13
|
-
### 1. Clone and Setup
|
7
|
+
### Installation
|
14
8
|
|
15
9
|
```bash
|
16
|
-
|
17
|
-
cd vme-mcp-server
|
18
|
-
npm install
|
10
|
+
npm install -g vme-mcp-server
|
19
11
|
```
|
20
12
|
|
21
|
-
###
|
13
|
+
### Prerequisites
|
22
14
|
|
23
|
-
|
15
|
+
- Claude Desktop
|
16
|
+
- Node.js 18+ and npm
|
17
|
+
- Access to an HPE VM Essentials (VME) instance
|
24
18
|
|
25
|
-
|
26
|
-
cp .env.example .env
|
27
|
-
```
|
19
|
+
### 2. Configure VME API Access
|
28
20
|
|
29
|
-
|
21
|
+
Create a `.env` file:
|
30
22
|
```env
|
31
23
|
VME_API_BASE_URL=https://your-vme-instance.com/api
|
32
24
|
VME_API_TOKEN=your-bearer-token-here
|
@@ -37,10 +29,7 @@ VME_API_TOKEN=your-bearer-token-here
|
|
37
29
|
**Option A: Using Claude Code CLI (Recommended)**
|
38
30
|
|
39
31
|
```bash
|
40
|
-
claude mcp add vme-server
|
41
|
-
-e VME_API_BASE_URL=https://your-vme-instance.com/api \
|
42
|
-
-e VME_API_TOKEN=your-bearer-token \
|
43
|
-
-- npx tsx src/server.ts
|
32
|
+
claude mcp add vme-server -- vme-mcp-server
|
44
33
|
```
|
45
34
|
|
46
35
|
**Option B: Manual Configuration**
|
package/dist/README.md
CHANGED
package/dist/server.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vme-mcp-server",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.5",
|
4
4
|
"description": "VMware vCenter MCP Server - Natural language infrastructure management for Claude",
|
5
5
|
"main": "dist/server.js",
|
6
6
|
"bin": {
|
@@ -10,7 +10,7 @@
|
|
10
10
|
"build": "tsc",
|
11
11
|
"start": "node dist/server.js",
|
12
12
|
"dev": "tsx watch src/server.ts",
|
13
|
-
"prepublishOnly": "npm run build && cp README-NPM.md dist/README.md",
|
13
|
+
"prepublishOnly": "npm run build && echo '#!/usr/bin/env node' | cat - dist/server.js > temp && mv temp dist/server.js && chmod +x dist/server.js && cp README-NPM.md dist/README.md",
|
14
14
|
"test": "mocha tests/**/*.test.js",
|
15
15
|
"test:unit": "mocha tests/unit/*.test.js",
|
16
16
|
"test:integration": "mocha tests/integration/*.test.js",
|