vme-mcp-server 0.1.3 → 0.1.4
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 +8 -16
- package/dist/README.md +1 -1
- package/package.json +1 -1
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
|
package/dist/README.md
CHANGED